HomeSort by: relevance | last modified time | path
    Searched defs:text (Results 1 - 25 of 67) sorted by relevancy

1 2 3

  /src/sys/stand/efiboot/
userconf.c 58 char *text; local in function:userconf_add
73 text = alloc(len);
74 if (text == NULL) {
77 memcpy(text, cmd, len);
79 uc->uc_text = text;
  /src/tests/crypto/opencrypto/
h_comp.c 40 char text[100000] = {0}; variable in typeref:typename:char[100000]
62 co1.len = sizeof(text);
63 co1.src = text;
87 if (memcmp(text, buf2, co2.dst_len))
h_comp_zlib.c 39 char text[10000] = {0}; variable in typeref:typename:char[10000]
62 co1.len = sizeof(text);
63 co1.src = text;
87 if (z.total_out != sizeof(text))
89 if (memcmp(buf2, text, sizeof(text)))
h_comp_zlib_rnd.c 40 char text[1000]; variable in typeref:typename:char[1000]
52 for (i = 0; i < sizeof(text)/sizeof(long); i++)
53 *(long *)(text + i * sizeof(long)) = random();
67 co1.len = sizeof(text);
68 co1.src = text;
91 if (z.total_out != sizeof(text))
93 if (memcmp(buf2, text, sizeof(text)))
  /src/sys/arch/hppa/stand/boot/
ld.script 11 /* Read-only sections, merged into text segment: */
13 .text : {
14 *(.text)
15 *(.text.1)
  /src/sys/arch/hppa/stand/cdboot/
ld.script 11 /* Read-only sections, merged into text segment: */
13 .text : {
14 *(.text)
15 *(.text.1)
  /src/usr.bin/sdiff/
edit.c 76 char buf[BUFSIZ], *text; local in function:eparse
82 text = NULL;
96 if (asprintf(&text, "%s\n%s\n", left, right) == -1)
106 if (asprintf(&text, "%s\n", left) == -1)
117 if (asprintf(&text, "%s\n", right) == -1)
131 if (text != NULL) {
134 len = strlen(text);
135 if ((size_t)write(fd, text, len) != len) {
142 /* text is no longer used. */
143 free(text);
    [all...]
  /src/tests/lib/libc/string/
t_bm.c 49 const char *text; member in struct:__anon2bd77cd70108
76 char *text; local in function:ATF_TC_BODY
83 ATF_REQUIRE((text = strdup(testcases[ts].text)));
84 off = bm_exec(pattern, (u_char *)text, strlen(text));
90 (off-(u_char *)text));
93 free(text);
  /src/sys/external/bsd/gnu-efi/dist/gnuefi/
elf_riscv64_efi.lds 9 .text 0x0 :
12 *(.text.head)
13 *(.text)
14 *(.text.*)
48 .rela.text :
49 { *(.rela.text) *(.rela.text*) }
elf_aarch64_efi.lds 8 .text 0x0 : {
10 *(.text.head)
11 *(.text)
12 *(.text.*)
elf_arm_efi.lds 8 .text 0x0 : {
10 *(.text.head)
11 *(.text)
12 *(.text.*)
elf_ia32_efi.lds 14 .text :
17 *(.text)
18 *(.text.*)
elf_ia32_fbsd_efi.lds 14 .text :
17 *(.text)
18 *(.text.*)
  /src/bin/sh/
expand.h 41 char *text; member in struct:strlist
  /src/games/monop/
cards.c 51 static void printmes(const char *text);
57 const char *text; member in struct:cardinfo
253 printmes(thiscard->text);
341 printmes(const char *text)
347 for (i = 0; text[i] != '\0'; i++)
348 putchar(text[i]);
  /src/sys/arch/hppa/conf/
ld.script 11 .text :
14 *(.text) *(.text.*)
  /src/sys/arch/sparc/stand/bootblk/
Makefile 16 bootblk bootblk.text bootblk.text.tmp
36 bootblk.text: bootblk.fth ffs.fth.h lfs.fth.h
38 ${.CURDIR}/bootblk.fth | /usr/bin/cpp -P >bootblk.text.tmp &&
39 mv -f bootblk.text.tmp bootblk.text
51 fake: bootblk bootblk.text
53 ../fakeboot/fakeboot -elf32 <bootblk.text >/bootblk.text
  /src/sys/dev/std/
ieee1212var.h 53 char *text; member in struct:p1212_textdata
59 struct p1212_textdata **text; member in struct:p1212_com
  /src/usr.bin/menuc/
parse.y 61 %type <s_value> init_code system helpstr text
136 text : NAME | STRING label
159 | TITLE text { cur_menu->info->title = $2; }
160 | EXITSTRING text { cur_menu->info->exitstr = $2;
177 option_legend : text { cur_optn->name = $1; }
232 | HELP text ";" { cur_menu->info->helpstr = $2; }
  /src/sys/arch/bebox/stand/boot/
ld.script 10 /* Read-only sections, merged into text segment: */
16 .rel.text : { *(.rel.text) }
17 .rela.text : { *(.rela.text) }
34 .text :
36 *(.text)
  /src/sys/arch/prep/stand/boot/
ld.script 10 /* Read-only sections, merged into text segment: */
16 .rel.text : { *(.rel.text) }
17 .rela.text : { *(.rela.text) }
34 .text :
36 *(.text)
  /src/sys/arch/rs6000/stand/boot/
ld.script 10 /* Read-only sections, merged into text segment: */
16 .rel.text : { *(.rel.text) }
17 .rela.text : { *(.rela.text) }
34 .text :
36 *(.text)
  /src/games/adventure/
hdr.h 85 struct text { struct
91 extern struct text rtext[RTXSIZE]; /* random text messages */
94 extern struct text mtext[MAGSIZE]; /* magic messages */
98 extern struct text ctext[CLSMAX]; /* classes of adventurer */
101 extern struct text ptext[101]; /* object descriptions */
104 extern struct text ltext[LOCSIZE]; /* long loc description */
105 extern struct text stext[LOCSIZE]; /* short loc descriptions */
  /src/sys/arch/ia64/stand/common/
interp.c 188 char *text; member in struct:includeline
245 sp->text = (char *)sp + sizeof(struct includeline);
246 strcpy(sp->text, cp);
275 res = bf_run(sp->text);
278 filename, sp->text);
287 printf("%s\n", sp->text);
291 if (!parse(&argc, &argv, sp->text)) {
  /src/sys/dev/i2c/
sht4xvar.h 58 const char *text; member in struct:sht4x_resolution

Completed in 17 milliseconds

1 2 3