/external/grub/netboot/ |
sk_g16.c | 142 #define SK_POS0 ioaddr /* Card-ID Low (R) */ 254 * CSR1 - Low order bits of initialize block (bits 15:00) 300 * The number of low I/O ports used by the ethercard. 380 * LANCE I/O Reg: The I/O Reg is build of 4 single Registers, Low-Byte Write, 381 * Hi-Byte Write, Low-Byte Read, Hi-Byte Read. 382 * Transfer from or to the LANCE is always in 16Bit so Low and High 980 * CSR1 contains low order bits 15:0 of initialization block address 987 SK_write_reg(CSR1, 0); /* Set low order bits 15:0 */
|
/external/icu4c/i18n/ |
regexcmp.h | 125 // Data associated with low level character scanning 215 // The high 16 bits are the operator precedence, and the low 16 are a code for the operation itself.
|
uspoof_impl.cpp | 130 int32_t *low = fSpoofData->fCFUKeys; local 132 int32_t *limit = low + fSpoofData->fRawData->fCFUKeysSize; 135 int32_t delta = (limit-low)/2; 136 mid = low + delta; 143 low = mid; 145 } while (low < limit-1); 146 mid = low;
|
/external/kernel-headers/original/asm-x86/ |
cmpxchg_32.h | 31 unsigned int low, unsigned int high) 41 "b"(low),
|
/external/opencore/doc/oscl_html/ |
osclconfig__unix__android_8h.html | 40 <tr><td nowrap align=right valign=top>#define </td><td valign=bottom><a class="el" href="osclconfig__unix__android_8h.html#a17">INT64_HILO</a>(high, low) ((((high##LL))<<32)|low)</td></tr> 41 <tr><td nowrap align=right valign=top>#define </td><td valign=bottom><a class="el" href="osclconfig__unix__android_8h.html#a18">UINT64_HILO</a>(high, low) ((((high##ULL))<<32)|low)</td></tr> 178 <td class="md" nowrap>low </td> 181 <td class="md" nowrap> ((((high##LL))<<32)|low) 786 <td class="md" nowrap>low </td> 789 <td class="md" nowrap> ((((high##ULL))<<32)|low)
|
osclconfig__unix__common_8h.html | 41 <tr><td nowrap align=right valign=top>#define </td><td valign=bottom><a class="el" href="osclconfig__unix__common_8h.html#a17">INT64_HILO</a>(high, low) ((((high##LL))<<32)|low)</td></tr> 42 <tr><td nowrap align=right valign=top>#define </td><td valign=bottom><a class="el" href="osclconfig__unix__common_8h.html#a18">UINT64_HILO</a>(high, low) ((((high##ULL))<<32)|low)</td></tr> 179 <td class="md" nowrap>low </td> 182 <td class="md" nowrap> ((((high##LL))<<32)|low) 787 <td class="md" nowrap>low </td> 790 <td class="md" nowrap> ((((high##ULL))<<32)|low)
|
/external/skia/include/core/ |
Sk64.h | 29 uint32_t fLo; //!< the low 32 bits of the number 104 /** Set the high and low 32 bit values of the number */
|
/external/v8/src/ |
array.js | 424 var low, high; 429 low = j_complement; 432 low = i; 437 var current_i = array[low]; 438 if (!IS_UNDEFINED(current_i) || low in array) { 441 array[low] = current_j; 445 delete array[low]; 450 array[low] = current_j; [all...] |
/external/webkit/JavaScriptCore/wtf/unicode/wince/ |
UnicodeWince.h | 206 inline UChar32 surrogateToUcs4(wchar_t high, wchar_t low) 208 return (UChar32(high) << 10) + low - 0x35fdc00;
|
/external/webkit/WebCore/platform/text/ |
StringHash.h | 136 // effectively the same as 0 when the low bits are masked. 186 // effectively the same as 0 when the low bits are masked
|
/frameworks/base/core/java/android/net/ |
SntpClient.java | 83 // mode is in low 3 bits of first byte 207 // low order bits should be random data
|
/hardware/broadcom/wlan/bcm4329/src/shared/ |
siutils_priv.h | 131 #define LPOMINFREQ 25000 /* low power oscillator min */ 132 #define LPOMAXFREQ 43000 /* low power oscillator max */
|
/external/e2fsprogs/lib/ext2fs/ |
ext2_fs.h | 185 * overlaid by a dirent the two low bits of the hash version will be 305 __u16 i_uid; /* Low 16 bits of Owner Uid */ 311 __u16 i_gid; /* Low 16 bits of Group Id */ 361 __u16 i_uid; /* Low 16 bits of Owner Uid */ 367 __u16 i_gid; /* Low 16 bits of Group Id */ 710 * Ext2 directory file types. Only the low 3 bits are used. The
|
/external/grub/grub/ |
asmstub.c | 483 /* low-level timing info */ 725 /* low-level character I/O */ 754 /* Low-level disk I/O. Our stubbed version just returns a file 896 /* low 4 bits */ 897 int low = *ptr & 0xf; local 901 grub_printf ("%x%x", hi, low);
|
/external/openssl/crypto/bn/asm/ |
x86_64-gcc.c | 69 register BN_ULONG high,low; \ 71 : "=a"(low),"=d"(high) \ 76 : "a"(low),"g"(0) \ 86 register BN_ULONG high,low; \ 88 : "=a"(low),"=d"(high) \ 93 : "a"(low),"g"(0) \
|
/external/openssl/crypto/bn/ |
bn_lib.c | 92 void BN_set_params(int mult, int high, int low, int mont) 108 if (low >= 0) 110 if (low > (int)(sizeof(int)*8)-1) 111 low=sizeof(int)*8-1; 112 bn_limit_bits_low=low; 113 bn_limit_num_low=1<<low;
|
/external/qemu/ |
cpu-all.h | 864 /* Flags stored in the low bits of the TLB virtual address. These are 966 uint32_t low,high; local 968 asm volatile("rdtsc" : "=a" (low), "=d" (high)); 971 val |= low; 1015 uint32_t low; 1019 : "=r"(rval.i32.high), "=r"(rval.i32.low));
|
/frameworks/base/docs/html/guide/practices/ |
screens_support.jd | 116 generalized densities: high, medium, and low. Applications can provide custom 154 <li>A set of three generalized densities: high (<em>hdpi</em>), medium (<em>mdpi</em>), and low (<em>ldpi</em>) 186 <nobr>Low density (120), <em>ldpi</em></nobr> 276 low (ldpi) density screens, see the <a 310 (low). The qualifiers correspond to the generalized densities given in 461 density (left), HVGA medium density (center), and QVGA low density (right). </p> 662 <td>Resources for small screens, such as QVGA low density.</td> 677 <td>Low-density resources, for 100 to 140 dpi screens.</td> [all...] |
/external/dropbear/ |
loginrec.c | 324 ** login_write: Call low-level recording functions based on autoconf 649 ** Low-level utmp functions 799 ** Low-level utmpx functions 896 ** Low-level wtmp functions 1063 ** Low-level wtmpx functions 1214 ** Low-level libutil login() functions 1275 ** Low-level lastlog functions [all...] |
/external/jpeg/ |
usage.doc | 26 is possible if you can tolerate a low-quality image. You can trade off image 123 of low image quality. Settings around 5 to 10 might be useful in preparing an 129 if you need to ensure compatibility at low quality values.) 134 the first scan to display a low-quality image very quickly, and can then 189 even at low quality settings. (This switch is poorly 221 -fast Select recommended processing options for fast, low 330 version for posting or archiving. It's also a win when you are using low
|
/external/qemu/fpu/ |
softfloat.h | 143 uint64_t low; member in struct:__anon4549 150 uint64_t high, low; member in struct:__anon4550 152 uint64_t low, high; 433 return (a.high & 0x7fff) == 0x7fff && a.low == 0; 443 return (a.high & 0x7fff) == 0 && a.low == 0; 499 return (a.high & 0x7fffffffffffffffLL) == 0x7fff000000000000LL && a.low == 0; 509 return (a.high & 0x7fffffffffffffffLL) == 0 && a.low == 0;
|
/system/wlan/ti/sta_dk_4_0_4_32/common/src/core/currBss/ |
currBss.c | 50 * - implementing low levels of roaming mechanism. 63 * 'Low RSSI' from FW. Third type of roaming event reported by FW is 121 BOOLEAN rssiBelowThrReported; /**< Set to TRUE whem low RSSI threshold crossed */ 124 INT8 lowRssiThreshold; /**< Indicator used to increase the background scan period when quality is low */ 306 /* Configure and enable the Low RSSI, the Low SNR and the Missed beacon events */ [all...] |
/external/icu4c/common/ |
uset.cpp | 334 * - some supplementary: (length|0x8000) (bmpLength<length) BMP, .., BMP, supp-high, supp-low, .. 444 uint16_t high=(uint16_t)(c>>16), low=(uint16_t)c; local 448 if (high < array[base] || (high==array[base] && low<array[base+1])) { 450 } else if (high < array[base+hi] || (high==array[base+hi] && low<array[base+hi+1])) { 456 } else if (high < array[iabs] || (high==array[iabs] && low<array[iabs+1])) {
|
/external/qemu/elff/ |
elf_file.h | 462 /* Gets range's low and high pc for the given range reference in the mapped
471 * low - Upon successful return contains value for range's low pc.
478 bool get_range(Elf_Word offset, AddrType* low, AddrType* high) {
485 *low = pull_val(ptr);
|
/frameworks/base/tests/CoreTests/android/core/ |
TestEventHandler.java | 44 /* Used to sync low level delayed requests */ 47 /* Indicates whether the low level request testing is in operation */ 113 /* The low level API uses this reference also for non-delayed requests */ 536 * Use the low level net runner with no delayed response 544 * Use the low level net runner and specify if the response
|