Home
last modified time | relevance | path

Searched refs:textlen (Results 1 – 12 of 12) sorted by relevance

/openbsd-src/regress/sys/crypto/aes/
H A Daestest.c142 u_char *plaintext, u_char *ciphertext, u_int textlen) in do_tests() argument
148 if (docrypt(key, keylen, plaintext, result, textlen, 1) < 0) { in do_tests()
151 } else if (!match(result, ciphertext, textlen)) { in do_tests()
157 if (docrypt(key, keylen, ciphertext, result, textlen, 0) < 0) { in do_tests()
160 } else if (!match(result, plaintext, textlen)) { in do_tests()
176 u_int keylen, textlen, tmp; in run_file() local
182 keylen = textlen = tmp = 0; in run_file()
218 if (textlen != 0) { in run_file()
219 if (textlen != tmp) in run_file()
222 textlen); in run_file()
[all …]
/openbsd-src/gnu/usr.bin/texinfo/info/
H A Ddisplay.c59 display[i]->textlen = 0; in display_clear_display()
309 entry->textlen = 0; in display_update_one_window()
319 if ((i != pl_index) || (pl_index != entry->textlen)) in display_update_one_window()
332 && pl_index < entry->textlen) in display_update_one_window()
347 entry->textlen = pl_index; in display_update_one_window()
405 if (entry && entry->textlen) in display_update_one_window()
407 entry->textlen = 0; in display_update_one_window()
434 display[line_index]->textlen = strlen (win->modeline); in display_update_one_window()
490 the_display[i]->textlen = 0; in display_scroll_display()
510 the_display[i]->textlen = 0; in display_scroll_display()
[all …]
H A Ddir.c34 SEARCH_BINDING *binding, char *text, int textlen);
274 SEARCH_BINDING *binding, char *text, int textlen) in insert_text_into_fb_at_binding() argument
282 contents = (char *)xmalloc (fb->filesize + textlen + 1); in insert_text_into_fb_at_binding()
284 memcpy (contents + start, text, textlen); in insert_text_into_fb_at_binding()
285 memcpy (contents + start + textlen, fb->contents + start, end - start); in insert_text_into_fb_at_binding()
288 fb->filesize += textlen; in insert_text_into_fb_at_binding()
H A Dfilesys.c430 convert_eols (char *text, long int textlen) in convert_eols() argument
435 while (textlen--) in convert_eols()
437 if (*s == '\r' && textlen && s[1] == '\n') in convert_eols()
440 textlen--; in convert_eols()
H A Ddisplay.h33 int textlen; /* Printable Length of TEXT. */ member
H A Dfilesys.h49 long convert_eols (char *text, long textlen);
/openbsd-src/lib/libfido2/src/
H A Daes256.c120 size_t textlen; in aes256_gcm() local
151 textlen = in->len; in aes256_gcm()
153 textlen = in->len - 16; in aes256_gcm()
163 EVP_Cipher(ctx, out->ptr, in->ptr, (u_int)textlen) < 0 || in aes256_gcm()
/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dinterps.c420 int textlen; in interpreter_completer() local
432 textlen = strlen (text); in interpreter_completer()
435 if (strncmp (interp->name, text, textlen) == 0) in interpreter_completer()
/openbsd-src/gnu/usr.bin/perl/cpan/Text-Balanced/lib/Text/
H A DBalanced.pm233 my $textlen = length $$textref;
234 while (pos $$textref < $textlen)
708 my ($textlen,$startpos,
756 $endpos, $textlen-$endpos, # REMAINDER
812 $ld2pos, $textlen-$ld2pos, # REMAINDER
908 $endpos, $textlen-$endpos, # REMAINDER
/openbsd-src/gnu/usr.bin/binutils/gdb/cli/
H A Dcli-decode.c1488 int textlen = strlen (text); in complete_on_cmdlist() local
1495 if (!strncmp (ptr->name, text, textlen) in complete_on_cmdlist()
1560 int textlen = strlen (text); in complete_on_enum() local
1569 if (strncmp (name, text, textlen) == 0) in complete_on_enum()
/openbsd-src/gnu/usr.bin/cvs/src/
H A Drcs.c6971 rcs_change_text (name, textbuf, textlen, diffbuf, difflen, retbuf, retlen) in rcs_change_text() argument
6974 size_t textlen;
6988 if (! linevector_add (&lines, textbuf, textlen, NULL, 0))
H A DChangeLog-97543 (RCS_getdeltatext): Change type of textlen from int to size_t.