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

123

/haiku/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/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...]
H A DC-ctype.c591 { word: 1 },
599 { word: NR_FIXED },
601 { word: NR_FIXED + NR_CLASSES },
603 { word: 1 },
616 { word: 1 },
640 { word: L'0' },
641 { word: L'1' },
642 { word: L'2' },
643 { word: L'3' },
644 { word
[all...]
/haiku/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/src/system/libroot/posix/string/arch/generic/
H A Dmemcpy.c10 typedef int word; typedef
12 #define lsize sizeof(word)
25 // src and/or dest do not align on word boundary
29 len = lsize - ((long)d & lmask); // move the ptrs up to a word boundary
36 *(word *)d = *(word *)s;
/haiku/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/src/system/kernel/arch/arm/
H A Darch_exceptions.S95 .word arm_reserved // actually reset, but not used when mapped
98 .word arm_undefined
101 .word arm_syscall
104 .word arm_prefetch_abort
107 .word arm_data_abort
110 .word arm_reserved
113 .word arm_irq
116 .word arm_fiq
125 .word 0xdeadbeef
129 .word
[all...]
/haiku/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++;
/haiku/src/add-ons/kernel/busses/scsi/virtio/
H A DVirtioSCSIHelper.cpp73 uint16 *word = (uint16 *)data; local
76 *word = B_BENDIAN_TO_HOST_INT16(*word);
77 word++;
/haiku/src/add-ons/kernel/network/ppp/shared/libppp/
H A DMessageDriverSettingsUtils.cpp157 EscapeWord(BString& word) argument
159 word.ReplaceAll("\\", "\\\\");
160 word.ReplaceAll("#", "\\#");
161 word.ReplaceAll("\"", "\\\"");
162 word.ReplaceAll("\'", "\\\'");
174 BString line, word(name);
175 EscapeWord(word);
176 bool needsEscaping = word.FindFirst(' ') >= 0;
180 line << word; local
188 word
193 line << word; local
[all...]
/haiku/src/add-ons/network_settings/dialup/
H A DMessageDriverSettingsUtils.cpp159 EscapeWord(BString& word) argument
161 word.ReplaceAll("\\", "\\\\");
162 word.ReplaceAll("#", "\\#");
163 word.ReplaceAll("\"", "\\\"");
164 word.ReplaceAll("\'", "\\\'");
176 BString line, word(name);
177 EscapeWord(word);
178 bool needsEscaping = word.FindFirst(' ') >= 0;
182 line << word; local
190 word
195 line << word; local
[all...]
/haiku/src/system/boot/platform/bios_ia32/
H A Dsupport.S34 .word 0
35 .word 0,0
/haiku/src/system/boot/platform/efi/arch/x86/
H A Dcrt0-efi-x86.S74 .word (IMAGE_REL_ABSOLUTE<<12) + 0
75 .word (IMAGE_REL_ABSOLUTE<<12) + 0
/haiku/src/system/libroot/posix/musl/string/
H A Dstrchrnul.c17 typedef size_t __attribute__((__may_alias__)) word;
18 const word *w;
H A Dstpncpy.c14 typedef size_t __attribute__((__may_alias__)) word;
15 word *wd;
16 const word *ws;
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/
H A Dah_eeprom_v14.c197 uint16_t word; local
201 word = __bswap16(ee->baseEepHeader.length);
202 ee->baseEepHeader.length = word;
204 word = __bswap16(ee->baseEepHeader.checksum);
205 ee->baseEepHeader.checksum = word;
207 word = __bswap16(ee->baseEepHeader.version);
208 ee->baseEepHeader.version = word;
210 word = __bswap16(ee->baseEepHeader.regDmn[0]);
211 ee->baseEepHeader.regDmn[0] = word;
213 word
[all...]
H A Dah_eeprom_9287.c159 uint16_t word; local
163 word = __bswap16(ee->ee_base.baseEepHeader.length);
164 ee->ee_base.baseEepHeader.length = word;
166 word = __bswap16(ee->ee_base.baseEepHeader.checksum);
167 ee->ee_base.baseEepHeader.checksum = word;
169 word = __bswap16(ee->ee_base.baseEepHeader.version);
170 ee->ee_base.baseEepHeader.version = word;
172 word = __bswap16(ee->ee_base.baseEepHeader.regDmn[0]);
173 ee->ee_base.baseEepHeader.regDmn[0] = word;
175 word
[all...]
H A Dah_eeprom_v4k.c153 uint16_t word; local
157 word = __bswap16(ee->baseEepHeader.length);
158 ee->baseEepHeader.length = word;
160 word = __bswap16(ee->baseEepHeader.checksum);
161 ee->baseEepHeader.checksum = word;
163 word = __bswap16(ee->baseEepHeader.version);
164 ee->baseEepHeader.version = word;
166 word = __bswap16(ee->baseEepHeader.regDmn[0]);
167 ee->baseEepHeader.regDmn[0] = word;
169 word
[all...]
/haiku/src/add-ons/kernel/busses/scsi/ahci/
H A Dutil.cpp122 uint16 *word = (uint16*)data; local
125 *word = (*word << 8) | (*word >> 8);
126 word++;
/haiku/src/apps/mail/
H A DWIndex.h87 virtual char* NormalizeWord(const char* word, char* dest);
95 virtual int32 FindFirst(const char* word);
97 FileEntry* GetEntry(const char* word);
/haiku/src/system/boot/platform/efi/arch/x86_64/
H A Dcrt0-efi-x86_64.S75 .word (IMAGE_REL_ABSOLUTE<<12) + 0 // reloc for dummy
/haiku/src/system/libroot/add-ons/icu/
H A DICUNumericData.cpp65 fDataBridge->glibcNumericLocale->values[3].word
71 fDataBridge->glibcNumericLocale->values[4].word
107 fDataBridge->glibcNumericLocale->values[3].word
109 fDataBridge->glibcNumericLocale->values[4].word
/haiku/src/system/libroot/posix/glibc/stdlib/
H A Drandom_r.c77 allow a degree seven polynomial. (Note: The zeroth word of state
170 long int word;
189 word = seed;
196 long int hi = word / 127773;
197 long int lo = word % 127773;
198 word = 16807 * lo - 2836 * hi;
199 if (word < 0)
200 word += 2147483647;
201 *++dst = word;
295 location into the zeroth word o
169 long int word; local
[all...]

Completed in 330 milliseconds

123