HomeSort by relevance Sort by last modified time
    Searched full:high (Results 76 - 100 of 1912) sorted by null

1 2 34 5 6 7 8 91011>>

  /bionic/libm/src/
s_cbrt.c 42 u_int32_t high,low; local
70 GET_HIGH_WORD(high,t);
71 SET_HIGH_WORD(t,sign|((high&0x7fffffff)/3+B2));
81 GET_HIGH_WORD(high,t);
82 INSERT_WORDS(t,high+0x00000001,0);
e_rem_pio2.c 83 GET_HIGH_WORD(hx,x); /* high word of x */
121 u_int32_t high; local
124 GET_HIGH_WORD(high,y[0]);
125 i = j-((high>>20)&0x7ff);
132 GET_HIGH_WORD(high,y[0]);
133 i = j-((high>>20)&0x7ff);
  /external/kernel-headers/original/linux/
swab.h 134 * __swahb32 - return a high and low byte-swapped 32-bit value
199 * __swahb32p - return a high and low byteswapped 32-bit value from a pointer
202 * See __swahb32() for details of high/low byteswapping.
267 * __swahb32s - high and low byteswap a 32-bit value in-place
270 * See __swahb32() for details of high and low byte swapping
  /external/icu4c/tools/makeconv/
gencnvex.c 397 * 1. Count the number of unique unit values and get the low/high unit values
419 int32_t low, high, prev; local
426 /* step 1: examine the input units; set low, high, uniqueCount */
432 prev=high=low;
436 high=bytes[unitIndex];
438 if(high!=prev) {
439 prev=high;
445 count=(high-low)+1;
451 * from low to high
476 high=bytes[unitIndex]
716 UChar32 low, high, prev; local
    [all...]
  /external/qemu/target-arm/
neon_helper.c 958 uint32_t high; local
965 high = x >> 32;
966 if (high > 0xffff) {
967 high = 0xffff;
970 return low | (high << 16);
976 int32_t high; local
982 high = x >> 32;
983 if (high != (int16_t)high) {
984 high = (high >> 31) ^ 0x7fff
1038 uint64_t high = (uint16_t)(x >> 16); local
1044 uint64_t high = (int16_t)(x >> 16); local
1084 uint32_t high = b + (b >> 32); local
1109 uint32_t low, high; local
1282 uint32_t high = -(x >> 32); local
    [all...]
  /external/stlport/src/
ctype.cpp 399 const wchar_t* ctype<wchar_t>::do_is(const wchar_t* low, const wchar_t* high,
404 for ( ; low < high; ++low, ++vec) {
408 return high;
413 const wchar_t* low, const wchar_t* high) const {
414 return find_if(low, high, _Ctype_w_is_mask(m, ctype<char>::classic_table()));
420 const wchar_t* low, const wchar_t* high) const {
421 return find_if(low, high, not1(_Ctype_w_is_mask(m, ctype<char>::classic_table())));
430 ctype<wchar_t>::do_toupper(wchar_t* low, const wchar_t* high) const {
431 for ( ; low < high; ++low) {
436 return high;
    [all...]
  /dalvik/vm/mterp/armv5te/
OP_CMP_LONG.S 10 * be resolved by only looking at the high word. This could be made
22 * 2 or 3 cycles + branch if the high word doesn't match, 6 + branch
35 blt .L${opcode}_less @ signed compare on high part
  /external/e2fsprogs/lib/uuid/
uuid_generate.3.in 47 be generated based on high-quality randomness from
58 a high-quality random number generator (i.e.,
74 function only uses this algorithm if a high-quality source of
  /external/icu4c/i18n/
ucoleitr.cpp 50 int32_t high; member in struct:RCEI
106 buffer[bufferIndex].high = ixHigh;
124 int32_t high; member in struct:PCEI
184 buffer[bufferIndex].high = ixHigh;
445 uint32_t low = 0, high = 0; local
462 high = ucol_getOffset(elems);
477 *ixHigh = high;
530 int32_t low = 0, high = 0; local
563 high = ucol_getOffset(elems);
575 rceb.put(ce, low, high);
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/timer/win32/
SDL_systimer.c 43 /* Store if a high-resolution performance counter exists on the system */
45 /* The first high-resolution ticks value of the application */
47 /* The number of ticks per second of the high-resolution performance counter */
  /external/speex/include/speex/
speex_callbacks.h 64 /** Request for a high mode change */
105 /** Standard handler for high mode request (change high mode, no questions asked) */
  /external/tcpdump/
dccp.h 25 * @dccph_seq - sequence number high or low order 24 bits, depends on dccph_x
67 * @dccph_resp_ack_nr_high - 48 bit ack number high order bits, contains GSR
80 * @dccph_resp_ack_nr_high - 48 bit ack number high order bits, contains GSR
  /external/dbus/
README 3 - low-level vs. high-level API
32 Note: low-level API vs. high-level binding APIs
45 high-level API as analogous to Qt/GTK+/HTML.
145 we'd like to have a high degree of confidence that these dependencies
148 NOTE ABOUT HIGH-LEVEL BINDINGS
150 Note that the high-level bindings are _separate projects_ from the
  /dalvik/vm/mterp/x86-atom/
OP_MUL_LONG.S 41 * The low word of the result holds ZX, the high word holds
42 * (ZW+YX) + (the high overflow from ZX). YW doesn't matter because
OP_MUL_LONG_2ADDR.S 41 * The low word of the result holds ZX, the high word holds
42 * (ZW+YX) + (the high overflow from ZX). YW doesn't matter because
  /external/fdlibm/
e_remainder.c 43 hx = __HI(x); /* high word of x */
45 hp = __HI(p); /* high word of p */
s_modf.c 41 i0 = __HI(x); /* high x */
44 if(j0<20) { /* integer part in high x */
  /external/kernel-headers/original/asm-x86/
msr.h 134 #define rdpmc(counter,low,high) \
138 (high) = (u32)(_l >> 32); \
198 #define rdtsc(low,high) \
199 __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high))
204 #define rdtscp(low,high,aux) \
205 __asm__ __volatile__ (".byte 0x0f,0x01,0xf9" : "=a" (low), "=d" (high), "=c" (aux))
223 #define rdpmc(counter,low,high) \
225 : "=a" (low), "=d" (high) \
  /external/speex/libspeex/
quant_lsp.h 68 /* Quantizes high-band LSPs with 12 bits */
71 /* Decodes high-band LSPs */
  /external/webkit/WebCore/loader/
loader.h 51 enum Priority { Low, Medium, High };
98 RequestQueue m_requestsPending[High + 1];
  /external/webkit/WebCore/manual-tests/
show-hide-object.html 54 <param name="quality" value="high">
56 <embed src="resources/spinbox.swf" width="300" height="200" quality="high" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">
  /frameworks/base/awt/org/apache/harmony/awt/gl/font/
FontProperty.java 38 // array of exclusion ranges (pairs of low and high unicode exclusion bounds)
70 * low and high bounds of the intervals of characters to ignore in
  /hardware/msm7k/librpc/
rpc.c 57 if (!XDR_SEND_UINT32(xdr, &accreply->u.versions.high))
88 if (!XDR_SEND_UINT32(xdr, &rejreply->u.versions.high))
  /packages/apps/Gallery3D/src/com/cooliris/media/
LongSparseArray.java 310 int high = start + len, low = start - 1, guess; local
312 while (high - low > 1) {
313 guess = (high + low) / 2;
318 high = guess;
321 if (high == start + len)
323 else if (a[high] == key)
324 return high;
326 return ~high;
  /external/libxml2/
chvalid.c 169 int low, high, mid; local
178 high = rptr->nbShortRange - 1;
180 while (low <= high) {
181 mid = (low + high) / 2;
183 high = mid - 1;
185 if ((unsigned short) val > sptr[mid].high) {
197 high = rptr->nbLongRange - 1;
199 while (low <= high) {
200 mid = (low + high) / 2;
202 high = mid - 1
    [all...]

Completed in 333 milliseconds

1 2 34 5 6 7 8 91011>>