Searched refs:word (Results 1 - 25 of 337) sorted by relevance

1234567891011>>

/freebsd-9.3-release/sys/mips/include/
H A Drunq.h46 #define RQB_FFS(word) (ffsl(word) - 1)
48 #define RQB_FFS(word) (ffs(word) - 1)
52 * Type of run queue status word.
/freebsd-9.3-release/sys/arm/include/
H A Drunq.h39 #define RQB_FFS(word) (ffs(word) - 1)
42 * Type of run queue status word.
/freebsd-9.3-release/sys/i386/include/
H A Drunq.h39 #define RQB_FFS(word) (ffs(word) - 1)
42 * Type of run queue status word.
/freebsd-9.3-release/contrib/tcpdump/
H A Ddecnet.h33 typedef u_int8_t word[2]; /* 2 byte field */ typedef
67 word sh_dst; /* destination node address */
68 word sh_src; /* source node address */
156 word inIII_src; /* source node address */
158 word inIII_blksize; /* maximum data link block size */
168 word in_src; /* source node address */
170 word in_blksize; /* maximum data link block size */
174 word in_hello; /* hello timer */
181 word ve_src; /* source node address */
188 word te_sr
[all...]
/freebsd-9.3-release/sys/arm/arm/
H A Dvectors.S70 .word reset_entry
73 .word undefined_entry
76 .word swi_entry
79 .word prefetch_abort_entry
82 .word data_abort_entry
85 .word address_exception_entry
88 .word irq_entry
92 .word _C_LABEL(fiqvector)
94 .word 0 /* pad it out */
H A Dcpufunc_asm_ixp12x0.S79 .word 0xf0000000
83 .word 0x00008000
88 .word _C_LABEL(ixp12x0_cache_clean_addr)
90 .word _C_LABEL(ixp12x0_cache_clean_size)
H A Dexception.S108 .word _C_LABEL(prefetch_abort_handler_address)
114 .word abortprefetch
144 .word _C_LABEL(data_abort_handler_address)
149 .word abortdata
219 .word Lundefined_handler_indirection_data
240 * 3rd word contains the undefined handler address.
244 .word 0
245 .word 0
249 .word _C_LABEL(undefinedinstruction_bounce)
/freebsd-9.3-release/lib/libc/string/
H A Dstrtok.c113 char *brkb, *brkt, *phrase, *sep, *word; local
120 for (word = strtok(test, sep); word; word = strtok(NULL, sep))
121 printf("Next word is \"%s\".\n", word);
124 for (word = strtok_r(test, sep, &brkt); word;
125 word = strtok_r(NULL, sep, &brkt)) {
130 printf("So far we're at %s:%s\n", word, phras
[all...]
H A Dbcopy.c42 * sizeof(word) MUST BE A POWER OF TWO
45 typedef int word; /* "word" used for optimal copy speed */ typedef
47 #define wsize sizeof(word)
106 TLOOP(*(word *)dst = *(word *)src; src += wsize; dst += wsize);
127 TLOOP(src -= wsize; dst -= wsize; *(word *)dst = *(word *)src);
/freebsd-9.3-release/sys/mips/mips/
H A Dfp.S118 .word add_s # 0
119 .word add_d # 0
120 .word ill # 0
121 .word ill # 0
122 .word ill # 0
123 .word ill # 0
124 .word ill # 0
125 .word ill # 0
126 .word sub_s # 1
127 .word sub_
[all...]
/freebsd-9.3-release/sys/amd64/include/
H A Drunq.h39 #define RQB_FFS(word) (bsfq(word))
42 * Type of run queue status word.
/freebsd-9.3-release/sys/powerpc/include/
H A Drunq.h44 #define RQB_FFS(word) (ffsl(word) - 1)
47 * Type of run queue status word.
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dcompleter.c48 /* readline uses the word breaks for two things:
51 it doesn't matter a lot what the word breaks are for this purpose, but
53 (2) If one of the matches contains a word break character, readline
62 word break characters, since we use it in command names. If the
69 /* When completing on file names, we remove from the list of word
117 filename_completer (char *text, char *word)
158 if (word == text)
161 else if (word > text)
165 strcpy (q, p + (word - text));
172 q = xmalloc (strlen (p) + (text - word)
116 filename_completer(char *text, char *word) argument
199 location_completer(char *text, char *word) argument
340 command_completer(char *text, char *word) argument
384 char *word; local
[all...]
/freebsd-9.3-release/sys/boot/arm/ixp425/boot2/
H A Darm_init.S48 .word _edata
49 .word _end
50 .word BOOT_STACK
/freebsd-9.3-release/usr.bin/locate/locate/
H A Dutil.c206 /* tolower word */
208 tolower_word(word)
209 u_char *word;
213 for(p = word; *p != '\0'; p++)
216 return(word);
266 register int word; local
268 word = getw(fp);
270 if (word > MAXPATHLEN || word < -(MAXPATHLEN)) {
271 word
[all...]
/freebsd-9.3-release/lib/libc/arm/gen/
H A D__aeabi_read_tp.S39 .word ARM_TP_ADDRESS
/freebsd-9.3-release/contrib/tnftp/src/
H A Dcomplete.c80 * word word which started the match
86 complete_ambiguous(char *word, int list, StringList *words) argument
93 wordlen = strlen(word);
99 if (*p == '\0') /* at end of word? */
139 complete_command(char *word, int list) argument
147 wordlen = strlen(word);
152 if (strncmp(word, c->c_name, wordlen) == 0)
156 rv = complete_ambiguous(word, list, words);
169 complete_local(char *word, in argument
251 complete_option(char *word, int list) argument
281 complete_remote(char *word, int list) argument
362 static char word[FTPBUFLEN]; local
[all...]
/freebsd-9.3-release/sys/sparc64/include/
H A Drunq.h39 #define RQB_FFS(word) (ffs64(word) - 1)
42 * Type of run queue status word.
/freebsd-9.3-release/contrib/groff/src/devices/grohtml/
H A Dhtml.h28 struct word { struct
30 word *next;
32 word (const char *w, int n);
33 ~word ();
45 word *head;
46 word *tail;
/freebsd-9.3-release/contrib/bind9/lib/lwres/
H A Dlwconfig.c296 char word[LWRES_CONFMAXLINELEN]; local
306 res = getword(fp, word, sizeof(word));
307 if (strlen(word) == 0U)
315 res = lwres_create_addr(word, &address, 1);
327 char word[LWRES_CONFMAXLINELEN]; local
336 res = getword(fp, word, sizeof(word));
337 if (strlen(word) == 0U)
345 res = lwres_create_addr(word,
355 char word[LWRES_CONFMAXLINELEN]; local
397 char word[LWRES_CONFMAXLINELEN]; local
478 char word[LWRES_CONFMAXLINELEN]; local
534 char word[LWRES_CONFMAXLINELEN]; local
571 char word[256]; local
[all...]
/freebsd-9.3-release/contrib/openpam/lib/libpam/
H A Dopenpam_readword.c50 * Read a word from a file, respecting shell quoting rules.
56 char *word; local
77 word = NULL;
88 if (openpam_straddch(&word, &size, &len, 0) != 0)
98 openpam_straddch(&word, &size, &len, '\\') != 0) {
99 free(word);
103 if (openpam_straddch(&word, &size, &len, ch) != 0) {
104 free(word);
115 free(word);
122 free(word);
[all...]
/freebsd-9.3-release/lib/libc/arm/sys/
H A Dsbrk.S49 .word _C_LABEL(_end)
85 .word _GLOBAL_OFFSET_TABLE_ - (.L1+4)
88 .word PIC_SYM(CURBRK, GOT)
/freebsd-9.3-release/contrib/nvi/clib/
H A Dmemmove.c46 * sizeof(word) MUST BE A POWER OF TWO
49 typedef int word; /* "word" used for optimal copy speed */ typedef
51 #define wsize sizeof(word)
116 TLOOP(*(word *)dst = *(word *)src; src += wsize; dst += wsize);
137 TLOOP(src -= wsize; dst -= wsize; *(word *)dst = *(word *)src);
/freebsd-9.3-release/sys/powerpc/powerpc/
H A Dbcopy.c52 * sizeof(word) MUST BE A POWER OF TWO
55 typedef long word; /* "word" used for optimal copy speed */ typedef
57 #define wsize sizeof(word)
109 TLOOP(*(word *)dst = *(const word *)src; src += wsize;
135 *(word *)dst = *(const word *)src);
/freebsd-9.3-release/crypto/openssl/crypto/
H A Dsparccpuid.S46 .word 0x91408000 !rd %ccr,%o0
52 .word 0xbfa00040 !fmovd %f0,%f62
53 .word 0xbba00040 !...
54 .word 0xb7a00040
55 .word 0xb3a00040
56 .word 0xafa00040
57 .word 0xaba00040
58 .word 0xa7a00040
59 .word 0xa3a00040
60 .word
[all...]

Completed in 318 milliseconds

1234567891011>>