Searched defs:lo (Results 1 - 8 of 8) sorted by relevance

/system/core/include/corkscrew/
H A Dptrace.h72 uint64_t lo; member in struct:pt_regs_mips
/system/core/include/private/pixelflinger/
H A Dggl_fixed.h114 asm("smull %[lo], %[hi], %[x], %[y] \n"
115 "movs %[lo], %[lo], lsr %[rshift] \n"
116 "adc %[lo], %[lo], %[hi], lsl %[lshift] \n"
117 : [lo]"=r"(result), [hi]"=r"(t), [x]"=r"(x)
122 asm("smull %[lo], %[hi], %[x], %[y] \n"
123 "movs %[lo], %[lo], lsr %[rshift] \n"
124 "adc %[lo],
181 int32_t lo; member in struct:__anon331::__anon332
441 int32_t lo; member in struct:__anon333::__anon334
[all...]
/system/core/libcorkscrew/arch-mips/
H A Dbacktrace-mips.c41 uint64_t lo; member in struct:__anon378
/system/core/liblog/
H A Devent_tag_map.c128 int hi, lo, mid; local
130 lo = 0;
133 while (lo <= hi) {
136 mid = (lo+hi)/2;
140 lo = mid + 1;
/system/core/libpixelflinger/
H A Dfixed.cpp261 uint32_t lo = ab; local
269 result = lo/c; // note: c can't be 0
277 r = (r << 1) | (lo >> 31);
278 lo <<= 1;
/system/core/libpixelflinger/codeflinger/
H A DGGLAssembler.h251 component_t(int r, int lo, int hi, int f=0) argument
252 : reg_t(r, f), h(hi), l(lo) {
263 void setTo(int r, int lo=0, int hi=0, int f=0) { argument
264 reg_t::setTo(r, f); h=hi; l=lo;
/system/core/toolbox/
H A Dnewfs_msdos.c101 #define argto1(arg, lo, msg) argtou(arg, lo, 0xff, msg)
102 #define argto2(arg, lo, msg) argtou(arg, lo, 0xffff, msg)
103 #define argto4(arg, lo, msg) argtou(arg, lo, 0xffffffff, msg)
104 #define argtox(arg, lo, msg) argtou(arg, lo, UINT_MAX, msg)
951 argtou(const char *arg, u_int lo, u_int hi, const char *msg) argument
958 if (errno || !*arg || *s || x < lo ||
[all...]
/system/core/libcutils/
H A Dtztime.c1243 register int lo = 1; local
1246 while (lo < hi) {
1247 register int mid = (lo + hi) >> 1;
1251 else lo = mid + 1;
1253 i = (int) sp->types[lo - 1];
1672 register time_t lo; local
1750 lo = 0;
1751 hi = lo - 1;
1756 lo = -hi;
1758 lo
[all...]

Completed in 1649 milliseconds