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

12345678

/haiku-fatelf/src/bin/bash/
H A Dbashtypes.h25 # define word __word macro
31 # undef word macro
/haiku-fatelf/src/bin/bash/builtins/
H A Dbashgetopt.c68 /* Hmmm.... called with a different word list. Reset. */
75 if (lcurrent == 0 || NOTOPT(lcurrent->word->word)) {
79 } else if (lcurrent->word->word[0] == '-' &&
80 lcurrent->word->word[1] == '-' &&
81 lcurrent->word->word[2] == 0) {
86 errstr[0] = list_opttype = lcurrent->word
[all...]
H A Dcommon.c390 dollar_vars[i] = savestring (list->word->word);
442 that wants it. LIST is the word list that the arg is to come from.
459 if (list && list->word && ISOPTION (list->word->word, '-'))
464 arg = list->word->word;
467 sh_neednumarg (list->word->word
648 register char *word; local
[all...]
/haiku-fatelf/src/libs/glut/
H A DglutDstr.cpp56 char *word = strtok(gState.displayString, " \t"); local
58 char *cstr = strpbrk(word, "=><!~");
66 if(!strcmp(word, "alpha")) {
68 } else if((!strcmp(word, "acc")) || (!strcmp(word, "acca"))) {
70 } else if(!strcmp(word, "depth")) {
72 } else if(!strcmp(word, "double")) {
74 } else if(!strcmp(word, "stencil")) {
77 } while((word = strtok(0, " \t")) != 0);
/haiku-fatelf/data/etc/bash_completion.d/helpers/
H A Dperl9 my ($base, $dir, $word) = @_;
11 # return immediatly if potential completion doesn't match current word
14 # word 'Fi', base 'File' -> match 'File' against 'Fi'
15 # word 'File::Sp', base 'File' -> match 'File::Sp' againt 'File'
18 $word &&
19 $base !~ /^\Q$word/ &&
20 $word !~ /^\Q$base/;
28 next if $module !~ /^\Q$word/;
38 print_modules_real(undef, $subdir, $word);
41 print_modules_real($base . $directory . '::', $subdir, $word);
[all...]
/haiku-fatelf/src/system/libroot/posix/glibc/locale/
H A DC-numeric.c36 { word: (unsigned int) L'.' },
37 { word: (unsigned int) L'\0' },
H A DC-monetary.c78 { word: 10101 },
79 { word: 99991231 },
80 { word: 10101 },
81 { word: 99991231 },
82 { word: 1 },
83 { word: (unsigned int) L'\0' },
84 { word: (unsigned int) L'\0' },
H A Dcategories.def35 `bytearray', and `word'. These cover all possible values in the current
46 DEFINE_ELEMENT (_NL_COLLATE_NRULES, "collate-nrules", std, word)
56 DEFINE_ELEMENT (_NL_COLLATE_SYMB_HASH_SIZEMB, "collate-symb-hash-sizemb", std, word)
79 DEFINE_ELEMENT (_NL_CTYPE_MB_CUR_MAX, "ctype-mb-cur-max", std, word)
83 DEFINE_ELEMENT (_NL_CTYPE_CLASS_OFFSET, "ctype-class-offset", std, word)
84 DEFINE_ELEMENT (_NL_CTYPE_MAP_OFFSET, "ctype-map-offset", std, word)
85 DEFINE_ELEMENT (_NL_CTYPE_INDIGITS_MB_LEN, "ctype-indigits_mb-len", std, word)
96 DEFINE_ELEMENT (_NL_CTYPE_INDIGITS_WC_LEN, "ctype-indigits_wc-len", std, word)
117 DEFINE_ELEMENT (_NL_CTYPE_OUTDIGIT0_WC, "ctype-outdigit0_wc", std, word)
118 DEFINE_ELEMENT (_NL_CTYPE_OUTDIGIT1_WC, "ctype-outdigit1_wc", std, word)
[all...]
/haiku-fatelf/src/bin/network/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...]
/haiku-fatelf/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dbitmap.h76 * @word: value to rotate
79 static __inline__ u32 ntfs_rol32(u32 word, unsigned int shift) argument
81 return (word << shift) | (word >> (32 - shift));
87 * @word: value to rotate
90 static __inline__ u32 ntfs_ror32(u32 word, unsigned int shift) argument
92 return (word >> shift) | (word << (32 - shift));
/haiku-fatelf/src/bin/coreutils/lib/
H A Dfpucw.h1 /* Manipulating the FPU control word.
23 through the 'PC' bits in the FPU control word ('fctrl' register). (See
35 The FPU control word is under control of the application, i.e. it is
38 is not clear about it. But in any case, gcc treats the control word
40 word is preserved across calls, and it restores the control word at the
53 GET_FPUCW () yields the current FPU control word
54 SET_FPUCW (word) sets the FPU control word
77 # define SET_FPUCW(word) \
[all...]
H A Dsignbitd.c42 union { double value; unsigned int word[NWORDS]; } m; member in union:__anon3349
44 return (m.word[DBL_SIGNBIT_WORD] >> DBL_SIGNBIT_BIT) & 1;
H A Disnan.c80 typedef union { DOUBLE value; unsigned int word[NWORDS]; } memory_double; member in union:__anon3297
99 exponent = (m.word[EXPBIT0_WORD] >> EXPBIT0_BIT) & EXP_MASK;
103 return 1 & (m.word[0] >> 15);
105 return (((m.word[0] ^ 0x8000U) << 16) | m.word[1] | (m.word[2] >> 16)) != 0;
107 return 1 & ~(m.word[0] >> 15);
111 return (m.word[1] >> 31);
113 return ((m.word[1] ^ 0x80000000U) | m.word[
[all...]
H A Dsignbitf.c42 union { float value; unsigned int word[NWORDS]; } m; member in union:__anon3350
44 return (m.word[FLT_SIGNBIT_WORD] >> FLT_SIGNBIT_BIT) & 1;
H A Dsignbitl.c42 union { long double value; unsigned int word[NWORDS]; } m; member in union:__anon3351
44 return (m.word[LDBL_SIGNBIT_WORD] >> LDBL_SIGNBIT_BIT) & 1;
/haiku-fatelf/src/bin/coreutils/man/
H A Dwc.x2 wc \- print newline, word, and byte counts for each file
/haiku-fatelf/src/bin/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...]
/haiku-fatelf/src/bin/gdb/gdb/rdi-share/
H A Dparams.c190 buffer += sizeof( word );
195 buffer += sizeof( word );
197 buffer += sizeof( word );
219 buffer += sizeof( word );
224 buffer += sizeof( word );
226 buffer += sizeof( word );
230 buffer += sizeof( word );
249 unsigned int word; local
252 word = GET32LE( buffer );
253 buffer += sizeof( word );
285 unsigned int word; local
[all...]
H A Dangel.h80 typedef unsigned int word ; typedef
89 * be created on a host system, where the word size is not
153 word w ;
154 word *wp ;
158 word (*wfn)(void) ;
/haiku-fatelf/src/system/libroot/posix/string/arch/generic/
H A Dmemcpy.c12 typedef int word; typedef
14 #define lsize sizeof(word)
27 // src and/or dest do not align on word boundary
31 len = lsize - ((long)d & lmask); // move the ptrs up to a word boundary
38 *(word *)d = *(word *)s;
/haiku-fatelf/src/bin/network/ftp/
H A Dcomplete.c77 * word word which started the match
83 complete_ambiguous(char *word, int list, StringList *words) argument
90 wordlen = strlen(word);
96 if (*p == '\0') /* at end of word? */
136 complete_command(char *word, int list) argument
144 wordlen = strlen(word);
149 if (strncmp(word, c->c_name, wordlen) == 0)
153 rv = complete_ambiguous(word, list, words);
166 complete_local(char *word, in argument
248 complete_option(char *word, int list) argument
278 complete_remote(char *word, int list) argument
356 static char word[FTPBUFLEN]; local
[all...]
/haiku-fatelf/src/system/libroot/posix/string/
H A Dmemmove.c12 typedef int word; typedef
14 #define lsize sizeof(word)
30 // src and/or dest do not align on word boundary
34 len = lsize - ((long)d & lmask); // move the ptrs up to a word boundary
41 *(word*)d = *(word*)s;
51 // src and/or dest do not align on word boundary
64 *(word*)d = *(word*)s;
/haiku-fatelf/src/system/kernel/arch/arm/
H A Darch_exceptions.S70 .word arm_reserved // actually reset, but not used when mapped
73 .word arm_undefined
76 .word arm_syscall
79 .word arm_prefetch_abort
82 .word arm_data_abort
85 .word arm_reserved
88 .word arm_irq
91 .word arm_fiq
97 .word 0xdeadbeef
101 .word
[all...]
/haiku-fatelf/src/bin/gdb/opcodes/
H A Dhppa-dis.c46 /* Get at various relevent fields of an instruction word. */
229 extract_3 (word)
230 unsigned word;
232 return GET_FIELD (word, 18, 18) << 2 | GET_FIELD (word, 16, 17);
236 extract_5_load (word)
237 unsigned word;
239 return low_sign_extend (word >> 16 & MASK_5, 5);
244 extract_5_store (word)
245 unsigned word;
[all...]
/haiku-fatelf/src/add-ons/kernel/bus_managers/ata/
H A DATAHelper.cpp72 uint16 *word = (uint16 *)data; local
75 *word = B_BENDIAN_TO_HOST_INT16(*word);
76 word++;

Completed in 143 milliseconds

12345678