/external/gptfdisk/ |
support.cc | 48 // Get a numeric value from the user, between low and high (inclusive). 51 // (If def is outside of the low-high range, an explicit response 53 int GetNumber(int low, int high, int def, const string & prompt) { 57 if (low != high) { // bother only if low and high differ... 65 if ((response < low) || (response > high)) 70 } while ((response < low) || (response > high)); 71 } else { // low == high, so return this value 72 cout << "Using " << low << "\n"; local 73 response = low; [all...] |
support.h | 75 int GetNumber(int low, int high, int def, const string & prompt); 77 uint64_t GetSectorNum(uint64_t low, uint64_t high, uint64_t def, uint64_t sSize, const std::string& prompt); 78 uint64_t IeeeToInt(string IeeeValue, uint64_t sSize, uint64_t low, uint64_t high, uint64_t def = 0);
|
/external/selinux/libsepol/include/sepol/ |
port_record.h | 28 int low, int high, int proto, 32 int *low, int *high, int *proto); 54 extern void sepol_port_set_range(sepol_port_t * port, int low, int high);
|
/external/vixl/examples/aarch64/ |
check-bounds.cc | 32 // uint64_t check_bounds(uint64_t value, uint64_t low, uint64_t high) 35 // low -> x1 38 // First we compare 'value' with the 'low' bound. If x1 <= x0 the N flag will 64 uint64_t low, 67 simulator->WriteXRegister(1, low); 74 low,
|
/frameworks/av/media/libstagefright/webm/ |
EbmlUtil.cpp | 55 int32_t low = u; local 56 return low !=0 ? numberOfTrailingZeros32(low)
|
/libcore/ojluni/src/main/java/java/io/ |
StreamTokenizer.java | 267 * <code>low <= <i>c</i> <= high</code> 271 * @param low the low end of the range. 274 public void wordChars(int low, int hi) { 275 if (low < 0) 276 low = 0; 279 while (low <= hi) 280 ctype[low++] |= CT_ALPHA; 285 * <code>low <= <i>c</i> <= high</code> 292 * @param low the low end of the range [all...] |
/toolchain/binutils/binutils-2.25/gprof/ |
symtab.c | 181 unsigned long low, mid, high; 188 for (low = 0, high = sym_tab->len - 1; low != high;) 190 mid = (high + low) >> 1; 192 fprintf (stderr, "[dbg_sym_lookup] low=0x%lx, mid=0x%lx, high=0x%lx\n", 193 low, mid, high); 204 low = mid + 1; 220 long low, high; 231 for (low = 0, high = sym_tab->len - 1; low != high; 180 unsigned long low, mid, high; local 219 long low, high; local [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
inftrees.c | 51 unsigned low; /* low bits for current root entry */
local 52 unsigned mask; /* mask for low root bits */
159 of the low root bits of huff. This is saved in low to check for when a
206 low = (unsigned)(-1); /* trigger new sub-table when len > root */
208 mask = used - 1; /* mask for comparing low */
232 /* replicate for those indices with low len bits equal to huff */
260 if (len > root && (huff & mask) != low) {
285 low = huff & mask; [all...] |
/external/e2fsprogs/lib/blkid/ |
getsize.c | 79 blkid_loff_t high, low; local 179 low = 0; 181 low = high; 182 while (low < high - 1) { 183 const blkid_loff_t mid = (low + high) / 2; 186 low = mid; 190 return low + 1;
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
JapaneseCalendar.java | 270 int low = 0; local 277 low = CURRENT_ERA; 282 while (low < high - 1) { 283 int i = (low + high) / 2; 296 low = i; 307 internalSet(ERA, low); 308 internalSet(YEAR, year - ERAS[low*3] + 1);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
JapaneseCalendar.java | 284 int low = 0; local 291 low = CURRENT_ERA; 296 while (low < high - 1) { 297 int i = (low + high) / 2; 310 low = i; 321 internalSet(ERA, low); 322 internalSet(YEAR, year - ERAS[low*3] + 1);
|
/external/pdfium/third_party/zlib_v128/ |
inftrees.c | 51 unsigned low; /* low bits for current root entry */ local 52 unsigned mask; /* mask for low root bits */ 159 of the low root bits of huff. This is saved in low to check for when a 206 low = (unsigned)(-1); /* trigger new sub-table when len > root */ 208 mask = used - 1; /* mask for comparing low */ 232 /* replicate for those indices with low len bits equal to huff */ 260 if (len > root && (huff & mask) != low) { 285 low = huff & mask [all...] |
/external/zlib/src/ |
inftrees.c | 51 unsigned low; /* low bits for current root entry */ local 52 unsigned mask; /* mask for low root bits */ 159 of the low root bits of huff. This is saved in low to check for when a 206 low = (unsigned)(-1); /* trigger new sub-table when len > root */ 208 mask = used - 1; /* mask for comparing low */ 232 /* replicate for those indices with low len bits equal to huff */ 260 if (len > root && (huff & mask) != low) { 285 low = huff & mask [all...] |
/frameworks/base/core/java/android/text/ |
AndroidBidi.java | 170 for (int low = i, hi = e - 2; low < hi; low += 2, hi -= 2) { 171 int x = ld[low]; ld[low] = ld[hi]; ld[hi] = x; 172 x = ld[low+1]; ld[low+1] = ld[hi+1]; ld[hi+1] = x;
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/ |
terulequery.py | 109 for low, high in value: 110 if not (0 <= low <= 0xffff): 111 raise ValueError("{0:#07x} is not a valid ioctl.".format(low)) 116 if high < low: 117 high, low = low, high 119 pending_xperms.update(i for i in range(low, high+1))
|
/external/e2fsprogs/resize/ |
extent.c | 145 __s64 low, high, mid; local 154 low = 0; 156 while (low <= high) { 158 mid = (low+high)/2; 160 if (low == high) 161 mid = low; 164 lowval = extent->list[low].old_loc; 179 mid = low + ((__u64) (range * (high-low))); 189 low = mid+1 [all...] |
/external/protobuf/src/google/protobuf/util/internal/ |
json_escaping.cc | 99 // Determines if the given char value is a unicode low-surrogate code unit. 112 // high-surrogate or low-surrogate). 138 inline uint32 ToCodePoint(uint16 high, uint16 low) { 141 // + (low - kMinLowSurrogate) 144 return (high << 10) + low + 150 // Returns the low surrogate for the given unicode code point. The result is 265 uint16 low = ToLowSurrogate(cp); local 268 buffer[11] = kHex[low & 0x0f]; 269 low >>= 4; 270 buffer[10] = kHex[low & 0x0f] [all...] |
/toolchain/binutils/binutils-2.25/gas/ |
atof-generic.c | 130 address_of_generic_floating_point_number->low; 144 address_of_generic_floating_point_number->low; 299 = -1 + address_of_generic_floating_point_number->low; 320 - address_of_generic_floating_point_number->low 433 digits_flonum.low = digits_binary_low; 487 power_of_10_flonum.low = power_binary_low; 491 temporary_flonum.low = temporary_binary_low; 602 if (f->low < f->high) 603 for (lp = f->high; lp >= f->low; lp--) 606 for (lp = f->low; lp <= f->high; lp++ [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/ |
netcontext.py | 26 port_range = namedtuple("port_range", ["low", "high"]) 180 low, high = self.ports 182 if low == high: 183 return "portcon {0.protocol} {1} {0.context}".format(self, low) 185 return "portcon {0.protocol} {1}-{2} {0.context}".format(self, low, high) 188 return hash("portcon|{0.protocol}|{1.low}|{1.high}".format(self, self.ports)) 203 Return: Tuple(low, high) 204 low The low port of the range. 207 low = self.qpol_symbol.low_port(self.policy [all...] |
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/ppc/ |
vle-reloc.d | 28 18: R_PPC_VLE_LO16D low 40 30: R_PPC_VLE_LO16D low 54 4c: R_PPC_VLE_LO16D low 66 64: R_PPC_VLE_LO16D low 78 7c: R_PPC_VLE_LO16D low 90 94: R_PPC_VLE_LO16A low 102 ac: R_PPC_VLE_LO16A low 114 c4: R_PPC_VLE_LO16A low 126 dc: R_PPC_VLE_LO16A low 138 f4: R_PPC_VLE_LO16A low [all...] |
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_atan.c | 82 u_int32_t low; local 83 GET_LOW_WORD(low,x); 85 (ix==0x7ff00000&&(low!=0)))
|
/device/linaro/bootloader/edk2/StdLib/LibC/Math/ |
s_atan.c | 82 u_int32_t low;
local 83 GET_LOW_WORD(low,x);
85 (ix==0x7ff00000&&(low!=0)))
|
/external/clang/test/OpenMP/ |
ordered_codegen.cpp | 218 void foo_simd(int low, int up) { 222 for (int i = low; i < up; ++i) { 230 for (int i = low; i < up; ++i) {
|
/external/compiler-rt/test/builtins/Unit/ |
negvti2_test.c | 40 at.s.high, at.s.low, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
|
/external/google-benchmark/src/ |
cycleclock.h | 73 uint64_t low, high; 74 __asm__ volatile("rdtsc" : "=a"(low), "=d"(high)); 75 return (high << 32) | low; 83 // high 32 bits in tbu1; low 32 bits in tbl (tbu0 is garbage)
|