Searched refs:text (Results 151 - 175 of 968) sorted by relevance

1234567891011>>

/freebsd-13-stable/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-13-stable/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.c109 SetChar2(line->text[i + x], astr[i]);
167 if (x > 0 && isWidecExt(line->text[x])) {
169 if (!isWidecExt(line->text[x - i])) {
173 line->text[x - i--] = _nc_render(win, blank);
190 line->text[x] = _nc_render(win, astr[i]);
194 line->text[x + j] = line->text[x];
196 SetWidecExt(line->text[x + j], j);
212 while (x <= win->_maxx && isWidecExt(line->text[x])) {
213 line->text[
[all...]
H A Dwresize.c43 FreeAndNull(data[length].text);
94 tst->_line[row].text = &pline[tst->_pary + row].text[tst->_parx];
164 * corresponding text, depending on whether this is a window or a
180 ? win->_line[row].text[col]
184 s = win->_line[row].text;
193 } else if (pline != 0 && pline[win->_pary + row].text != 0) {
194 s = &pline[win->_pary + row].text[win->_parx];
213 new_lines[row].text = s;
222 FreeAndNull(win->_line[row].text);
[all...]
H A Dlib_scroll.c72 * This used to do a line-text pointer-shuffle instead of text copies.
89 memcpy(win->_line[line].text,
90 win->_line[line + n].text,
98 win->_line[line].text[j] = blank;
107 memcpy(win->_line[line].text,
108 win->_line[line + n].text,
115 win->_line[line].text[j] = blank;
/freebsd-13-stable/stand/efi/boot1/
H A Dboot1.c162 CHAR16 *text; local
227 text = efi_devpath_name(img->FilePath);
228 if (text != NULL) {
229 printf(" Load Path: %S\n", text);
230 efi_setenv_freebsd_wcs("Boot1Path", text);
231 efi_free_devpath_name(text);
240 text = efi_devpath_name(imgpath);
241 if (text != NULL) {
242 printf(" Load Device: %S\n", text);
243 efi_setenv_freebsd_wcs("Boot1Dev", text);
[all...]
/freebsd-13-stable/crypto/openssl/crypto/evp/
H A De_chacha20_poly1305.c156 struct { uint64_t aad, text; } len; member in struct:__anon7140::__anon7141
175 actx->len.text = 0;
237 actx->len.text = plen;
262 actx->len.text = plen;
296 actx->len.text = plen;
330 ctr[8] = (unsigned char)(actx->len.text);
331 ctr[9] = (unsigned char)(actx->len.text>>8);
332 ctr[10] = (unsigned char)(actx->len.text>>16);
333 ctr[11] = (unsigned char)(actx->len.text>>24);
334 ctr[12] = (unsigned char)(actx->len.text>>3
[all...]
/freebsd-13-stable/contrib/kyua/store/
H A Dlayout.cpp45 #include "utils/text/exceptions.hpp"
46 #include "utils/text/regex.hpp"
51 namespace text = utils::text;
72 const text::regex preg = text::regex::compile(
80 const text::regex_matches matches = preg.match(iter->name);
100 } catch (const text::regex_error& e) {
/freebsd-13-stable/cddl/contrib/opensolaris/lib/libdtrace/arm/
H A Ddt_isadep.c83 uint32_t *text; local
90 if ((text = malloc(symp->st_size + 4)) == NULL) {
95 if (Pread(P, text, symp->st_size, symp->st_value) != symp->st_size) {
97 free(text);
105 text[symp->st_size / 4] = 0;
113 free(text);
/freebsd-13-stable/sys/mips/nlm/dev/net/ucore/
H A Dld.ucore.S42 .text : {
46 *(.text)
47 *(.text.*)
/freebsd-13-stable/usr.sbin/bsdinstall/partedit/
H A Dgpart_ops.c589 items[0].text = gc->lg_val;
593 items[3].text = gc->lg_val;
602 items[2].text = md->fstab->fs_file;
609 items[1].text = sizestr;
618 if (strcmp(items[2].text, "/") == 0 && !is_fs_bootable(scheme,
619 items[0].text)) {
623 items[0].text);
632 if (strchr(items[3].text, '/') != NULL) {
644 if (hadlabel || items[3].text[0] != '\0')
645 gctl_ro_param(r, "label", -1, items[3].text);
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Edit/
H A DCommit.cpp48 bool Commit::insert(SourceLocation loc, StringRef text, argument
50 if (text.empty())
60 addInsert(loc, Offs, text, beforePreviousInsertions);
116 bool Commit::replace(CharSourceRange range, StringRef text) { argument
117 if (text.empty())
128 addInsert(range.getBegin(), Offs, text, false);
165 bool Commit::replaceText(SourceLocation loc, StringRef text, argument
167 if (text.empty() || replacementText.empty())
178 addInsert(loc, Offs, text, false);
182 void Commit::addInsert(SourceLocation OrigLoc, FileOffset Offs, StringRef text, argument
323 canReplaceText(SourceLocation loc, StringRef text, FileOffset &Offs, unsigned &Len) argument
[all...]
/freebsd-13-stable/contrib/kyua/utils/text/
H A Dregex.hpp29 /// \file utils/text/regex.hpp
35 #include "utils/text/regex_fwd.hpp"
42 namespace text { namespace in namespace:utils
89 } // namespace text
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/builtins/i386/
H A Dfloatdidf.S23 .text
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/builtins/x86_64/
H A Dfloatundidf.S35 .text
H A Dfloatundisf.S19 .text
/freebsd-13-stable/sys/contrib/openzfs/contrib/initramfs/scripts/local-top/
H A Dzfs17 plymouth message --text="$*"
/freebsd-13-stable/contrib/mandoc/
H A Deqn.h60 char *text; /* Text (or NULL). */ member in struct:eqn_box
/freebsd-13-stable/contrib/ncurses/ncurses/widechar/
H A Dlib_in_wch.c58 *wcval = win->_line[row].text[col];
/freebsd-13-stable/sys/amd64/sgx/
H A Dsgx_support.S39 .text
/freebsd-13-stable/stand/common/
H A Dinterp_simple.c70 * Header prepended to each line. The text immediately follows the header.
81 char text[0]; member in struct:includeline
148 strcpy(sp->text, cp);
172 printf("%s\n", sp->text);
176 if (!parse(&argc, &argv, sp->text)) {
/freebsd-13-stable/stand/efi/loader/arch/amd64/
H A Damd64_tramp.S33 .text
H A Dstart.S39 .text
/freebsd-13-stable/stand/efi/loader/arch/i386/
H A Dstart.S29 .text
/freebsd-13-stable/stand/mips/beri/boot2/
H A Dstart.S51 .text

Completed in 323 milliseconds

1234567891011>>