Searched refs:text (Results 226 - 250 of 853) sorted by relevance

1234567891011>>

/freebsd-11.0-release/tools/tools/mid/
H A Dmid-build22 find text/* -type f | mid-master-index 4 mid-index $dbout/mid
/freebsd-11.0-release/sys/riscv/include/
H A Dasm.h50 .text; .globl sym; .type sym,@function; .align 2; sym:
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangUtilityFunction.cpp38 /// @param[in] text
39 /// The text of the function. Must be a full translation unit.
42 /// The name of the function, as used in the text.
45 const char *text,
47 UtilityFunction (exe_scope, text, name)
44 ClangUtilityFunction(ExecutionContextScope &exe_scope, const char *text, const char *name) argument
/freebsd-11.0-release/contrib/tcpdump/
H A Dsignature.c49 signature_compute_hmac_md5(const uint8_t *text, int text_len, unsigned char *key, argument
74 * MD5(K XOR opad, MD5(K XOR ipad, text))
79 * and text is the data being protected
99 MD5_Update(&context, text, text_len); /* then text of datagram */
/freebsd-11.0-release/lib/libc/arm/string/
H A Dffs.S68 .text;
/freebsd-11.0-release/lib/libc/mips/sys/
H A Dbrk.S52 .text
H A Dsbrk.S50 .text
/freebsd-11.0-release/contrib/ncurses/ncurses/base/
H A Dlib_instr.c64 cchar_t *cell = &(win->_line[row].text[col]);
106 str[i++] = (char) CharOf(win->_line[row].text[col]);
/freebsd-11.0-release/contrib/ncurses/panel/
H A Dpanel.c73 dPanel(text,pan)
77 _nc_dPanel(const char *text, const PANEL * pan) argument
80 text, USER_PTR(pan->user),
/freebsd-11.0-release/contrib/dialog/samples/
H A Deditbox-utf814 allow the user to enter or modify free-form text.
/freebsd-11.0-release/contrib/groff/src/preproc/pic/
H A DMakefile.sub27 $(srcdir)/text.h
/freebsd-11.0-release/sys/i386/include/
H A Dasm.h71 #define _START_ENTRY .text; .p2align 2,0x90
111 #define RCSID(x) .text; .asciz x
/freebsd-11.0-release/lib/libstand/i386/
H A D_setjmp.S34 .text
/freebsd-11.0-release/sys/powerpc/aim/
H A Dlocore64.S64 .text
77 .text
/freebsd-11.0-release/sys/riscv/riscv/
H A Dcpufunc_asm.S39 .text
/freebsd-11.0-release/crypto/openssl/crypto/rc2/
H A Drc2test.c116 char *text = "Hello to all people out there"; variable
190 idea_cbc_encrypt((unsigned char *)text, out, strlen(text) + 1, &key, iv,
194 idea_cbc_encrypt(&(out[8]), &(out[8]), strlen(text) + 1 - 8, &dkey, iv,
196 if (memcmp(text, out, strlen(text) + 1) != 0) {
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DInternals.h62 void insert(SourceLocation loc, StringRef text);
63 void insertAfterToken(SourceLocation loc, StringRef text);
66 void replace(SourceRange range, StringRef text);
68 void replaceStmt(Stmt *S, StringRef text);
69 void replaceText(SourceLocation loc, StringRef text,
114 virtual void insert(SourceLocation loc, StringRef text) = 0;
/freebsd-11.0-release/contrib/llvm/tools/lldb/tools/lldb-mi/
H A DMICmnLLDBUtilSBValue.cpp25 // vbHandleCharType - (R) True = Yes return text molding to char type,
64 const CMIUtilString text((pName != nullptr) ? pName : CMIUtilString());
66 return text;
71 // text. If the value is invalid (or the SBValue object invalid) then "??" is
113 // text if it has a simple format (not composite).
449 const CMIUtilString text((pName != nullptr) ? pName : m_pUnkwn);
451 return text;
465 const CMIUtilString text((pName != nullptr) ? pName : m_pUnkwn);
467 return text;
/freebsd-11.0-release/sys/i386/i386/
H A Dexception.s66 .text
310 .text
321 .text
331 .text
335 .text
343 .text
/freebsd-11.0-release/sys/boot/common/
H A Dinterp.c185 * Header prepended to each line. The text immediately follows the header.
198 char text[0]; member in struct:includeline
263 strcpy(sp->text, cp);
292 res = bf_run(sp->text);
294 sprintf(command_errbuf, "Error while including %s, in the line:\n%s", filename, sp->text);
303 printf("%s\n", sp->text);
307 if (!parse(&argc, &argv, sp->text)) {
/freebsd-11.0-release/crypto/openssl/crypto/idea/
H A Dideatest.c84 char *text = "Hello to all people out there"; variable
152 idea_cbc_encrypt((unsigned char *)text, out, strlen(text) + 1, &key, iv,
156 idea_cbc_encrypt(&(out[8]), &(out[8]), strlen(text) + 1 - 8, &dkey, iv,
158 if (memcmp(text, out, strlen(text) + 1) != 0) {
/freebsd-11.0-release/gnu/usr.bin/grep/
H A Dkwset.c127 kwsincr (kwset_t kws, char const *text, size_t len) argument
140 text += len;
146 label = kwset->trans ? kwset->trans[(unsigned char) *--text] : *--text;
495 bmexec (kwset_t kws, char const *text, size_t size) argument
511 tp = memchr (text, kwset->target[0], size);
512 return tp ? tp - text : -1;
519 tp = text + len;
524 for (ep = text + size - 11 * len;;)
552 return tp - len - text;
581 cwexec(kwset_t kws, char const *text, size_t len, struct kwsmatch *kwsmatch) argument
745 kwsexec(kwset_t kws, char const *text, size_t size, struct kwsmatch *kwsmatch) argument
[all...]
/freebsd-11.0-release/contrib/dialog/
H A Dtextbox.c4 * textbox.c -- implements the text box
35 WINDOW *text; member in struct:__anon958
264 * Return current line of text.
314 * Go back 'n' lines in text file. Called by dialog_textbox().
396 * Print a new line of text.
401 if (wmove(obj->text, row, 0) != ERR) {
410 if (width > getmaxx(obj->text))
411 width = getmaxx(obj->text);
420 (void) waddch(obj->text, ' ');
421 (void) waddnstr(obj->text, lin
[all...]
/freebsd-11.0-release/crypto/openssh/regress/unittests/sshkey/
H A Dmktestdata.sh11 openssl rsa -noout -text -pubin | \
27 openssl rsa -noout -text -in $_in | \
30 openssl rsa -noout -text -in $_in | \
33 openssl rsa -noout -text -in $_in | \
48 openssl dsa -noout -text -in $_in | \
51 openssl dsa -noout -text -in $_in | \
54 openssl dsa -noout -text -in $_in | \
69 openssl ec -noout -text -in $_in | \
72 openssl ec -noout -text -in $_in | \
75 openssl ec -noout -text
[all...]
/freebsd-11.0-release/contrib/gcc/
H A Ddiagnostic.c156 const char *text = _(diagnostic_kind_text[diagnostic->kind]);
162 ? build_message_string ("%s: %s", progname, text)
165 ? build_message_string ("%s:%d:%d: %s", s.file, s.line, s.column, text)
167 : build_message_string ("%s:%d: %s", s.file, s.line, text));
457 text_info text;
461 text.err_no = errno;
462 text.args_ptr = ≈
463 text.format_spec = _(gmsgid);
464 text.locus = NULL;
465 pp_format_verbatim (global_dc->printer, &text);
154 const char *text = _(diagnostic_kind_text[diagnostic->kind]); local
454 text_info text; local
[all...]

Completed in 230 milliseconds

1234567891011>>