Searched defs:low (Results 26 - 50 of 282) sorted by relevance

1234567891011>>

/external/valgrind/main/memcheck/tests/s390x/
H A Dcds.c6 uint64_t low; member in struct:__anon33066
29 // Return a quad-word that only bits low[32:63] are undefined
36 val.low |= 0xFFFFFFFF00000000ull;
49 op3.high = op3.low = 0xdeadbeefdeadbabeull;
58 op1.high = op1.low = 42;
60 op3.high = op3.low = 0xdeadbeefdeadbabeull;
69 op1.high = op1.low = 42;
H A Dcdsg.c6 uint64_t low; member in struct:__anon33067
37 op2.high = op2.low = 42;
38 op3.high = op3.low = 0xdeadbeefdeadbabeull;
46 op1.high = op1.low = 42;
48 op3.high = op3.low = 0xdeadbeefdeadbabeull;
56 op1.high = op1.low = 42;
/external/valgrind/main/none/tests/s390x/
H A Dcdsg.c6 uint64_t low; member in struct:__anon33224
28 printf("before op1 = (%#lx, %#lx)\n", _op1.high, _op1.low);
29 printf("before op2 = (%#lx, %#lx)\n", _op2.high, _op2.low);
30 printf("before op3 = (%#lx, %#lx)\n", _op3.high, _op3.low);
44 printf("after op1 = (%#lx, %#lx)\n", _op1.high, _op1.low);
45 printf("after op2 = (%#lx, %#lx)\n", _op2.high, _op2.low);
46 printf("after op3 = (%#lx, %#lx)\n", _op3.high, _op3.low);
54 if (_op3.low != op3_before.low || _op3.high != op3_before.high) {
62 if (_op1.low !
[all...]
/external/chromium_org/chrome/browser/safe_browsing/
H A Dchunk_range.cc98 int low = 0; local
101 while (low <= high) {
103 int mid = ((unsigned int)low + (unsigned int)high) >> 1;
110 low = mid + 1;
/external/chromium_org/third_party/brotli/src/brotli/dec/
H A Dhuffman.c77 int low; /* low bits for current root entry */ local
78 int mask; /* mask for low bits */
139 low = -1;
142 if ((key & mask) != low) {
147 low = key & mask;
148 root_table[low].bits = (uint8_t)(table_bits + root_bits);
149 root_table[low].value = (uint16_t)((table - root_table) - low);
/external/chromium_org/third_party/icu/source/extra/scrptrun/
H A Dscrptrun.cpp129 // in the text, see if it's followed by a low surrogate
132 UChar low = charArray[scriptEnd + 1]; local
134 // if it is followed by a low surrogate,
136 if (low >= 0xDC00 && low <= 0xDFFF) {
137 ch = (high - 0xD800) * 0x0400 + low - 0xDC00 + 0x10000;
/external/chromium_org/third_party/icu/source/test/perf/normperf/
H A Ddtfmtrtperf.h90 UDate low, high; local
92 low = cal->getTime(*status);
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_common.h55 static INLINE int clamp(int value, int low, int high) { argument
56 return value < low ? low : (value > high ? high : value);
59 static INLINE double fclamp(double value, double low, double high) { argument
60 return value < low ? low : (value > high ? high : value);
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/primitives/
H A Dinput_helpers.h89 // Ensures input is an integer between low and high (inclusive).
92 IntegerWithinRangeValidator(int low, int high) argument
93 : low_(low), high_(high) {}
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dinttree.h17 long low; member in struct:IntervalTreeNode
58 void *IT_delete_node(IntervalTree *, IntervalTreeNode *, long *low,
61 IntervalTreeNode *IT_insert(IntervalTree *, long low, long high, void *data);
67 void IT_enumerate(IntervalTree *, long low, long high, void *cbd,
/external/chromium_org/third_party/zlib/
H A Dinftrees.c51 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
[all...]
/external/compiler-rt/lib/builtins/
H A Dint_types.h35 su_int low; member in struct:__anon19597::__anon19598
39 su_int low;
50 su_int low; member in struct:__anon19599::__anon19600
54 su_int low;
73 du_int low; member in struct:__anon19601::__anon19602
77 du_int low;
88 du_int low; member in struct:__anon19603::__anon19604
92 du_int low;
100 r.s.low = l;
107 r.s.low
128 udwords low; member in struct:__anon19607
[all...]
/external/e2fsprogs/lib/blkid/
H A Dgetsize.c78 blkid_loff_t high, low; local
178 low = 0;
180 low = high;
181 while (low < high - 1) {
182 const blkid_loff_t mid = (low + high) / 2;
185 low = mid;
189 return low + 1;
/external/elfutils/0.153/libdw/
H A Ddwarf_entry_breakpoints.c105 inline int search_range (Dwarf_Addr low, Dwarf_Addr high, argument
112 if (lines->info[idx].addr < low)
114 else if (lines->info[idx].addr > low)
/external/icu/icu4c/source/extra/scrptrun/
H A Dscrptrun.cpp129 // in the text, see if it's followed by a low surrogate
132 UChar low = charArray[scriptEnd + 1]; local
134 // if it is followed by a low surrogate,
136 if (low >= 0xDC00 && low <= 0xDFFF) {
137 ch = (high - 0xD800) * 0x0400 + low - 0xDC00 + 0x10000;
/external/icu/icu4c/source/test/perf/normperf/
H A Ddtfmtrtperf.h90 UDate low, high; local
92 low = cal->getTime(*status);
/external/libsepol/src/
H A Dcontext_record.c212 char *tmp = NULL, *low, *high; local
229 low = tmp;
234 if (!(high = strchr(low, ':')))
238 if (sepol_context_set_user(handle, tmp_con, low) < 0)
240 low = high;
243 if (!(high = strchr(low, ':')))
247 if (sepol_context_set_role(handle, tmp_con, low) < 0)
249 low = high;
252 if (!(high = strchr(low, ':'))) {
253 if (sepol_context_set_type(handle, tmp_con, low) <
[all...]
H A Dport_record.c10 int low, high; member in struct:sepol_port
21 int low, high; member in struct:sepol_port_key
29 int low, int high, int proto,
41 tmp_key->low = low;
52 int *low, int *high, int *proto)
55 *low = key->low;
68 (handle, port->low, port->high, port->proto, key_ptr) < 0) {
72 port->low, por
28 sepol_port_key_create(sepol_handle_t * handle, int low, int high, int proto, sepol_port_key_t ** key_ptr) argument
161 sepol_port_set_range(sepol_port_t * port, int low, int high) argument
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_common.h55 static INLINE int clamp(int value, int low, int high) { argument
56 return value < low ? low : (value > high ? high : value);
59 static INLINE double fclamp(double value, double low, double high) { argument
60 return value < low ? low : (value > high ? high : value);
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Dperf-time-to-tsc.c32 unsigned int low, high; local
34 asm volatile("rdtsc" : "=a" (low), "=d" (high));
36 return low | ((u64)high) << 32;
/external/lldb/include/lldb/Utility/
H A DPriorityPointerPair.h20 // priority, the other is low priority.
22 // otherwise, low is returned (even if *low == NULL)
41 pointer_type low) :
43 m_low(low)
46 PriorityPointerPair(pointer_type low) : argument
48 m_low(low)
52 T_SP& low) :
54 m_low(low)
57 PriorityPointerPair(T_SP& low) argument
40 PriorityPointerPair(pointer_type high, pointer_type low) argument
51 PriorityPointerPair(T_SP& high, T_SP& low) argument
[all...]
/external/oprofile/module/x86/
H A Dop_model_athlon.c52 uint low, high; local
57 CTRL_READ(low, high, msrs, i);
58 CTRL_CLEAR(low);
59 CTRL_WRITE(low, high, msrs, i);
72 CTRL_READ(low, high, msrs, i);
73 CTRL_CLEAR(low);
74 CTRL_SET_ENABLE(low);
75 CTRL_SET_USR(low, sysctl.ctr[i].user);
76 CTRL_SET_KERN(low, sysctl.ctr[i].kernel);
77 CTRL_SET_UM(low, sysct
89 uint low, high; local
105 uint low, high; local
119 uint low, high; local
[all...]
H A Dop_model_ppro.c48 uint low, high; local
53 CTRL_READ(low, high, msrs, i);
54 CTRL_CLEAR(low);
55 CTRL_WRITE(low, high, msrs, i);
68 CTRL_READ(low, high, msrs, i);
69 CTRL_CLEAR(low);
70 CTRL_SET_ENABLE(low);
71 CTRL_SET_USR(low, sysctl.ctr[i].user);
72 CTRL_SET_KERN(low, sysctl.ctr[i].kernel);
73 CTRL_SET_UM(low, sysct
85 ulong low, high; local
99 uint low, high; local
108 uint low, high; local
[all...]
/external/qemu/distrib/zlib-1.2.8/
H A Dinftrees.c51 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
[all...]
/external/qemu/include/hw/
H A Delf_ops.h188 uint64_t addr, low = (uint64_t)-1, high = 0; local
252 if (addr < low)
253 low = addr;
263 *lowaddr = (uint64_t)(elf_sword)low;

Completed in 845 milliseconds

1234567891011>>