Searched refs:text (Results 126 - 150 of 853) sorted by relevance

1234567891011>>

/freebsd-11.0-release/contrib/ofed/management/infiniband-diags/scripts/
H A Dibdatacounters.in75 text="`eval $netcmd`"
77 echo "$text" | awk '
H A Dibcheckport.in92 text="`eval $IBPATH/smpquery $ca_info portinfo $lid $portnum`"
94 if echo "$text" | awk -v mono=$bw -F '[.:]*' '
H A Dibcheckportstate.in92 text="`eval $IBPATH/smpquery $ca_info portinfo $lid $portnum`"
94 if echo "$text" | awk -v mono=$bw -F '[.:]*' '
H A Dibcheckportwidth.in92 text="`eval $IBPATH/smpquery $ca_info portinfo $lid $portnum`"
94 if echo "$text" | awk -v mono=$bw -F '[.:]*' '
H A Dibdatacounts.in111 text="`eval $IBPATH/perfquery $ca_info $lid $portnum`"
113 if echo "$text" | awk -v mono=$bw -v brief=$brief -F '[.:]*' '
/freebsd-11.0-release/contrib/netbsd-tests/crypto/opencrypto/
H A Dh_comp.c40 char text[100000] = {0}; variable
62 co1.len = sizeof(text);
63 co1.src = text;
87 if (memcmp(text, buf2, co2.dst_len))
/freebsd-11.0-release/contrib/compiler-rt/lib/builtins/i386/
H A Dashldi3.S18 .text
38 .text
H A Dlshrdi3.S18 .text
38 .text
/freebsd-11.0-release/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Dasm_linkage.h61 .text; \
/freebsd-11.0-release/sys/i386/bios/
H A Dsmapi_bios.S14 .text
/freebsd-11.0-release/lib/libc/powerpc64/
H A DSYS.h37 .text; \
43 .text; \
61 .text; \
78 .text; \
/freebsd-11.0-release/contrib/wpa/src/utils/
H A Dedit_readline.c39 static char * readline_completion_func(const char *text, int state) argument
51 len = os_strlen(text);
54 if (strncmp(pending_completions[pos], text, len) == 0)
63 static char ** readline_completion(const char *text, int start, int end) argument
69 return rl_completion_matches(text, readline_completion_func);
/freebsd-11.0-release/contrib/ntp/lib/isc/
H A Dresult.c37 const char ** text; member in struct:resulttable
43 static const char *text[ISC_R_NRESULTS] = { variable
134 table->text = txt;
155 result = register_table(ISC_RESULTCLASS_ISC, ISC_R_NRESULTS, text,
187 default_text = table->text[idx];
200 1, "(result code text not available)");
/freebsd-11.0-release/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_coverage_mapping_libcdep.cc15 // $pid.sancov.map describes process memory layout in the following text-based
72 InternalScopedString text(kMaxTextSize);
80 text.append("%d\n", sizeof(uptr) * 8);
89 text.append("%zx %zx %zx %s\n", start, end, base, module_name);
111 if (!WriteToFile(map_fd, text.data(), text.length(), nullptr, &err)) {
/freebsd-11.0-release/contrib/ncurses/ncurses/base/
H A Dlib_overlay.c192 if ((CharOf(src->_line[sy].text[sx]) != L(' ')) &&
193 (!CharEq(dst->_line[dy].text[dx],
194 src->_line[sy].text[sx]))) {
195 dst->_line[dy].text[dx] =
196 src->_line[sy].text[sx];
197 SetAttr(dst->_line[dy].text[dx],
198 ((AttrOf(src->_line[sy].text[sx]) &
203 if (!CharEq(dst->_line[dy].text[dx],
204 src->_line[sy].text[sx])) {
205 dst->_line[dy].text[d
[all...]
H A Dlib_addstr.c108 SetChar2(line->text[i + x], astr[i]);
166 if (x > 0 && isWidecExt(line->text[x])) {
168 if (!isWidecExt(line->text[x - i])) {
172 line->text[x - i--] = _nc_render(win, blank);
189 line->text[x] = _nc_render(win, astr[i]);
193 line->text[x + j] = line->text[x];
195 SetWidecExt(line->text[x + j], j);
209 while (x <= win->_maxx && isWidecExt(line->text[x])) {
210 line->text[
[all...]
H A Dwresize.c42 free(data[length].text);
79 tst->_line[row].text = &pline[tst->_pary + row].text[tst->_parx];
149 * corresponding text, depending on whether this is a window or a
165 ? win->_line[row].text[col]
169 s = win->_line[row].text;
178 } else if (pline != 0 && pline[win->_pary + row].text != 0) {
179 s = &pline[win->_pary + row].text[win->_parx];
198 new_lines[row].text = s;
207 free(win->_line[row].text);
[all...]
/freebsd-11.0-release/contrib/libreadline/
H A Dkill.c6 reading lines of text with interactive input and history editing.
64 /* Where to store killed text. */
89 non-zero, and the last command was a kill, the text is appended to the
92 _rl_copy_to_kill_ring (text, append)
93 char *text;
137 new = (char *)xmalloc (1 + strlen (old) + strlen (text));
142 strcat (new, text);
146 strcpy (new, text);
150 free (text);
154 rl_kill_ring[slot] = text;
169 char *text; local
414 char *text; local
[all...]
/freebsd-11.0-release/contrib/gdb/gdb/cli/
H A Dcli-decode.c114 char **(*completer) (char *text, char *word))
890 lookup. When it returns it will have incremented the text pointer past
891 the section of text it matched, set *RESULT_LIST to point to the list in
893 list element which the text matches. It will return NULL if no match at
897 the ambiguous text string).
919 This routine does *not* modify the text pointed to by TEXT.
926 lookup_cmd_1 (char **text, struct cmd_list_element *clist,
932 char *line = *text;
934 while (**text == ' ' || **text
112 set_cmd_completer(struct cmd_list_element *cmd, char **(*completer) (char *text, char *word)) argument
922 lookup_cmd_1(char **text, struct cmd_list_element *clist, struct cmd_list_element **result_list, int ignore_help_classes) argument
1205 deprecated_cmd_warning(char **text) argument
1282 lookup_cmd_composition(char *text, struct cmd_list_element **alias, struct cmd_list_element **prefix_cmd, struct cmd_list_element **cmd) argument
1396 complete_on_cmdlist(struct cmd_list_element *list, char *text, char *word) argument
1467 complete_on_enum(const char *enumlist[], char *text, char *word) argument
[all...]
/freebsd-11.0-release/cddl/contrib/opensolaris/lib/libdtrace/arm/
H A Ddt_isadep.c85 uint32_t *text; local
92 if ((text = malloc(symp->st_size + 4)) == NULL) {
97 if (Pread(P, text, symp->st_size, symp->st_value) != symp->st_size) {
99 free(text);
107 text[symp->st_size / 4] = 0;
115 free(text);
/freebsd-11.0-release/contrib/ntp/libntp/
H A Dssl_init.c91 const char *text,
111 strlcpy(upcased, text, LIB_BUFLENGTH);
119 if (!key_type && 'm' == tolower((unsigned char)text[0]))
90 keytype_from_text( const char *text, size_t *pdigest_len ) argument
/freebsd-11.0-release/sys/mips/nlm/dev/net/ucore/
H A Dld.ucore.S42 .text : {
46 *(.text)
47 *(.text.*)
/freebsd-11.0-release/libexec/rtld-elf/amd64/
H A Delf_rtld.x10 /* Read-only sections, merged into text segment: */
19 .rel.text :
20 { *(.rel.text) *(.rel.gnu.linkonce.t*) }
21 .rela.text :
22 { *(.rela.text) *(.rela.gnu.linkonce.t*) }
47 .text :
49 *(.text)
/freebsd-11.0-release/libexec/rtld-elf/i386/
H A Delf_rtld.x10 /* Read-only sections, merged into text segment: */
19 .rel.text :
20 { *(.rel.text) *(.rel.gnu.linkonce.t*) }
21 .rela.text :
22 { *(.rela.text) *(.rela.gnu.linkonce.t*) }
47 .text :
49 *(.text)
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Edit/
H A DCommit.cpp43 bool Commit::insert(SourceLocation loc, StringRef text, argument
45 if (text.empty())
55 addInsert(loc, Offs, text, beforePreviousInsertions);
111 bool Commit::replace(CharSourceRange range, StringRef text) { argument
112 if (text.empty())
123 addInsert(range.getBegin(), Offs, text, false);
160 bool Commit::replaceText(SourceLocation loc, StringRef text, argument
162 if (text.empty() || replacementText.empty())
173 addInsert(loc, Offs, text, false);
177 void Commit::addInsert(SourceLocation OrigLoc, FileOffset Offs, StringRef text, argument
322 canReplaceText(SourceLocation loc, StringRef text, FileOffset &Offs, unsigned &Len) argument
[all...]

Completed in 139 milliseconds

1234567891011>>