Searched refs:big (Results 1 - 12 of 12) sorted by relevance

/haiku/src/apps/serialconnect/libvterm/src/
H A Drect.h38 /* True if small is contained entirely within big */
39 static int rect_contains(VTermRect *big, VTermRect *small) argument
41 if(small->start_row < big->start_row) return 0;
42 if(small->start_col < big->start_col) return 0;
43 if(small->end_row > big->end_row) return 0;
44 if(small->end_col > big->end_col) return 0;
/haiku/src/system/libroot/posix/musl/math/
H A D__tan.c71 int big, sign; local
74 big = (hx&0x7fffffff) >= 0x3FE59428; /* |x| >= 0.6744 */
75 if (big) {
96 if (big) {
H A D__tanl.c103 int big, sign; local
105 big = fabsl(x) >= 0.67434;
106 if (big) {
123 if (big) {
/haiku/src/system/libroot/posix/glibc/stdio-common/
H A D_itowa.c65 } big; member in struct:base_table_t
185 /* First convert x0 to 1-3 words in base s->big.base.
190 int big_normalization_steps = brec->big.normalization_steps;
192 = brec->big.base << big_normalization_steps;
194 if ((mp_limb_t) (value >> 32) >= brec->big.base)
211 brec->big.base_ninv);
215 brec->big.base_ninv);
225 brec->big.base_ninv);
251 brec->big.base);
252 udiv_qrnnd (x1lo, t[2], r, (mp_limb_t) value, brec->big
[all...]
H A D_itoa.c66 } big; member in struct:base_table_t
266 /* First convert x0 to 1-3 words in base s->big.base.
271 int big_normalization_steps = brec->big.normalization_steps;
273 = brec->big.base << big_normalization_steps;
275 if ((mp_limb_t) (value >> 32) >= brec->big.base)
292 brec->big.base_ninv);
296 brec->big.base_ninv);
306 brec->big.base_ninv);
332 brec->big.base);
333 udiv_qrnnd (x1lo, t[2], r, (mp_limb_t) value, brec->big
[all...]
/haiku/src/add-ons/kernel/file_systems/bfs/
H A Dbfs_endian.h17 # error Building BFS with both big and little endian is not supported.
33 /* host is big endian, BFS is little endian or vice versa */
41 // TODO: maybe build a version that supports both, big & little endian?
/haiku/src/system/libroot/posix/stdlib/
H A Dmerge.c103 int big, iflag; local
125 i = big = 0;
146 if (!big) { /* here i = 0 */
149 big = 1;
164 big = 0;
/haiku/src/system/libroot/posix/glibc/arch/ppc/
H A Dlshift.S42 bge cr0,L(big) # branch if size >= 16
69 L(big): mflr r9
/haiku/headers/libs/print/libprint/
H A DHalftone.h29 ColorRGB32Big big; member in union:__anon112
/haiku/src/tests/kits/shared/
H A DMemoryRingIOTest.cpp170 MemoryRingIOTest* big = new MemoryRingIOTest(sizeof(BIG_PAYLOAD)); local
172 "MemoryRingIOTest: RW threaded, big buffer", big);
/haiku/src/apps/magnify/
H A DMagnify.cpp425 int32 big = fHPixelCount > fVPixelCount ? fHPixelCount local
427 ResizeWindow(big, big);
495 int32 big = (fHPixelCount > fVPixelCount) ? fHPixelCount : fVPixelCount; local
496 ResizeWindow(big, big);
/haiku/docs/develop/kits/storage/resources/
H A DResourcesFormat.tex168 endianess, that is the resources created by little endian and big endian
171 resource files big endian data. The endianess of an ELF file is encoded in
177 also for big endian machines. Therefore the endianess may be deduced by the
540 into four byte blocks, which are interpreted as big endian unsigned words
543 bytes of a big endian unsigned word (the upper byte(s) set to 0).

Completed in 191 milliseconds