HomeSort by relevance Sort by last modified time
    Searched full:low (Results 1 - 25 of 2034) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/stlport/src/
collate.cpp 32 string collate<char>::do_transform(const char* low, const char* high) const
33 { return string(low, high); }
35 long collate<char>::do_hash(const char* low, const char* high) const {
37 for ( ; low < high; ++low)
38 result = 5 * result + *low;
52 wstring collate<wchar_t>::do_transform(const wchar_t* low, const wchar_t* high) const
53 { return wstring(low, high); }
55 long collate<wchar_t>::do_hash(const wchar_t* low, const wchar_t* high) const {
57 for ( ; low < high; ++low
    [all...]
  /frameworks/base/awt/javax/imageio/stream/
package.html 4 This package contains classes and interfaces for handling images with low-level I/O operations.
  /frameworks/base/graphics/java/android/graphics/
package.html 3 Provides low level graphics tools such as canvases, color filters, points, and
  /bionic/libc/kernel/arch-x86/asm/
msr.h 36 #define rdtsc(low,high) __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high))
38 #define rdtscl(low) __asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx")
40 #define rdtscp(low,high,aux) __asm__ __volatile__ (".byte 0x0f,0x01,0xf9" : "=a" (low), "=d" (high), "=c" (aux))
50 #define rdpmc(counter,low,high) __asm__ __volatile__("rdpmc" : "=a" (low), "=d" (high) : "c" (counter))
  /ndk/build/platforms/android-5/arch-x86/usr/include/asm/
msr.h 36 #define rdtsc(low,high) __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high))
38 #define rdtscl(low) __asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx")
40 #define rdtscp(low,high,aux) __asm__ __volatile__ (".byte 0x0f,0x01,0xf9" : "=a" (low), "=d" (high), "=c" (aux))
50 #define rdpmc(counter,low,high) __asm__ __volatile__("rdpmc" : "=a" (low), "=d" (high) : "c" (counter))
  /ndk/build/platforms/android-8/arch-x86/usr/include/asm/
msr.h 36 #define rdtsc(low,high) __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high))
38 #define rdtscl(low) __asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx")
40 #define rdtscp(low,high,aux) __asm__ __volatile__ (".byte 0x0f,0x01,0xf9" : "=a" (low), "=d" (high), "=c" (aux))
50 #define rdpmc(counter,low,high) __asm__ __volatile__("rdpmc" : "=a" (low), "=d" (high) : "c" (counter))
  /dalvik/vm/
Bits.h 59 u4 low, high; local
65 low = pSrc[4];
66 low = (low << 8) | pSrc[5];
67 low = (low << 8) | pSrc[6];
68 low = (low << 8) | pSrc[7];
70 return ((u8) high << 32) | (u8) low;
101 u4 low, high local
156 u4 low, high; local
204 u4 low, high; local
    [all...]
  /external/dropbear/libtomcrypt/src/pk/ecc/
ecc_sizes.c 26 void ecc_sizes(int *low, int *high)
29 LTC_ARGCHKVD(low != NULL);
32 *low = INT_MAX;
35 if (ltc_ecc_sets[i].size < *low) {
36 *low = ltc_ecc_sets[i].size;
  /dalvik/vm/mterp/armv5te/
OP_CONST_WIDE.S 3 FETCH(r0, 1) @ r0<- bbbb (low)
4 FETCH(r1, 2) @ r1<- BBBB (low middle)
6 orr r0, r0, r1, lsl #16 @ r0<- BBBBbbbb (low word)
OP_CONST.S 4 FETCH(r0, 1) @ r0<- bbbb (low)
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
BinarySearch.java 34 int low = 0, high = data.length() - 1; local
35 while (low <= high) {
36 int mid = (low + high) >> 1;
43 low = mid + 1;
59 int low = 0, mid = -1, high = data.length() - 1; local
60 while (low <= high) {
61 mid = (low + high) >> 1;
64 low = mid + 1;
  /external/bluetooth/glib/debian/
changelog 1 glib-cvs (19981116.01) unstable; urgency=low
  /external/e2fsprogs/debian/attic/
e2fslibsg-dev.menu 3 longtitle="A library to handle low-level structures in an ext2 filesystem"\
  /packages/experimental/RpcPerformance/
README 3 A small test utility to run certain low-level microbenchmarks
  /external/oprofile/daemon/
opd_ibs.h 107 * IbsFetchLinAd low IbsOpRip low <-- Logical (virtual) RIP
109 * IbsFetchCtl low IbsOpData low
111 * IbsFetchPhysAd low IbsOpData2 low
113 * IbsOpData3 low
115 * IbsDcLinAd low
117 * IbsDcPhysAd low
  /external/e2fsprogs/e2fsck/
dx_dirinfo.c 83 int low, high, mid; local
85 low = 0;
89 if (ino == ctx->dx_dir_info[low].ino)
90 return &ctx->dx_dir_info[low];
94 while (low < high) {
95 mid = (low+high)/2;
96 if (mid == low || mid == high)
103 low = mid;
  /dalvik/dx/tests/079-dex-local-variable-renumbering/
info.txt 3 to make room for low scratch registers.
  /dalvik/dx/tests/084-dex-high-register-moves/
info.txt 2 high registers are moved to and from low registers with
  /dalvik/vm/mterp/c/
OP_GOTO_32.c 3 s4 offset = FETCH(1); /* low-order 16 bits */
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_MUL_LONG.S 13 * The low word of the result holds ZX, the high word holds
15 * it doesn't fit in the low 64 bits.
25 add r10, r2, r10 @ r10<- r10 + low(ZxW + (YxX))
  /external/kernel-headers/original/asm-arm/arch/
gpio-switch.h 18 * low -> open
21 * low -> disconnected
24 * low -> inactive
  /external/e2fsprogs/resize/
extent.c 144 int low, high, mid; local
153 low = 0;
155 while (low <= high) {
157 mid = (low+high)/2;
159 if (low == high)
160 mid = low;
163 lowval = extent->list[low].old_loc;
173 mid = low + ((int) (range * (high-low)));
183 low = mid+1
    [all...]
  /external/qemu/elff/
dwarf_die.cc 132 * where that routine is inlined), or a pair "low PC, and high PC" describing
137 AddrType low; local
140 while (elf_file()->get_range(range_off, &low, &high) &&
141 (low != 0 || high != 0)) {
142 if (address >= low && address < high) {
212 Elf_Xword low, high; local
213 while (elf_file()->get_range<Elf_Xword>(off, &low, &high) &&
214 (low != 0 || high != 0)) {
216 low, high);
220 Elf_Word low, high; local
    [all...]
  /external/srec/srec/clib/
voc_read.c 167 const char* low; local
177 low = voc->first_entry;
181 middle = low + ((high - low) >> 1) - 1;
189 if (low == high) return 0;
199 if (diff > 0) low = middle;
204 low = middle;
205 while (voc->first_entry < low) {
207 for (lo = low - 2; *lo != '\n'; lo--) ;
210 low = lo
    [all...]
  /external/skia/src/core/
SkFilterProc.h 44 // extract low 2 bits
54 // extract low 2 bits and shift up 2
62 // extract low 2 bits
78 // extract low 2 bits
88 // extract low 2 bits and shift up 2
96 // extract low 2 bits

Completed in 106 milliseconds

1 2 3 4 5 6 7 8 91011>>