Searched defs:high (Results 51 - 75 of 260) sorted by relevance

1234567891011

/external/chromium_org/third_party/opus/src/celt/
H A Dmodes.c92 int i, j, lin, low, high, nBark, offset=0; local
114 high = nBark-lin;
115 *nbEBands = low+high;
127 for (i=0;i<high;i++)
/external/chromium_org/third_party/smhasher/src/
H A Dmd5.cpp328 unsigned long high, low; local
331 high = ( ctx->total[0] >> 29 )
336 PUT_ULONG_LE( high, msglen, 4 );
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Dsession_info_unittest.cc126 uint16_t high) {
128 while (low != high + 1) {
176 // Insert empty packet which will be the new high sequence number.
125 BuildSeqNumList(uint16_t low, uint16_t high) argument
/external/e2fsprogs/lib/ext2fs/
H A Dbadblocks.c164 int low, high, mid; local
173 high = bb->num-1;
176 if (blk == bb->list[high])
177 return high;
179 while (low < high) {
180 mid = ((unsigned)low + (unsigned)high)/2;
181 if (mid == low || mid == high)
186 high = mid;
/external/e2fsprogs/resize/
H A Dextent.c144 __s64 low, high, mid; local
154 high = extent->num-1;
155 while (low <= high) {
157 mid = (low+high)/2;
159 if (low == high)
164 highval = extent->list[high].old_loc;
178 mid = low + ((__u64) (range * (high-low)));
186 high = mid-1;
/external/icu/icu4c/source/layout/
H A DLEFontInstance.cpp60 LEUnicode16 high = chars[i]; local
61 LEUnicode32 code = high;
63 if (i < offset + count - 1 && high >= 0xD800 && high <= 0xDBFF) {
67 code = (high - 0xD800) * 0x400 + low - 0xDC00 + 0x10000;
/external/jemalloc/test/unit/
H A Dstats.c34 size_t current, high; local
46 assert_d_eq(mallctl("stats.chunks.high", &high, &sz, NULL, 0), expected,
50 assert_zu_le(current, high,
51 "current should be no larger than high");
52 assert_u64_le((uint64_t)high, total,
53 "high should be no larger than total");
/external/libopus/celt/
H A Dmodes.c92 int i, j, lin, low, high, nBark, offset=0; local
114 high = nBark-lin;
115 *nbEBands = low+high;
127 for (i=0;i<high;i++)
/external/libsepol/include/sepol/policydb/
H A Dmls_types.h45 mls_level_t level[2]; /* low == level[0], high == level[1] */
131 uint32_t high; /* last bit represented - equals low for a single cat */ member in struct:mls_semantic_cat
/external/libsepol/src/
H A Dports.c40 * a high level representation */
51 int high = sepol_port_get_high(data); local
66 tmp_port->u.port.high_port = high;
68 ERR(handle, "low port %d exceeds high port %d",
96 low, high, sepol_port_get_proto_str(proto));
107 int high = port->u.port.high_port; local
122 sepol_port_set_range(tmp_record, low, high);
136 "to record", low, high, sepol_port_get_proto_str(rec_proto));
170 int low, high, proto; local
172 sepol_port_key_unpack(key, &low, &high,
208 int low, high, proto; local
248 int low, high, proto; local
[all...]
/external/libunwind/src/
H A Dos-linux.h206 unsigned long *low, unsigned long *high, unsigned long *offset,
268 cp = scan_hex (cp, high);
205 maps_next(struct map_iterator *mi, unsigned long *low, unsigned long *high, unsigned long *offset, unsigned long *flags) argument
/external/libxml2/
H A Dchvalid.c169 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
[all...]
/external/libxml2/include/libxml/
H A Dchvalid.h32 unsigned short high; member in struct:_xmlChSRange
39 unsigned int high; member in struct:_xmlChLRange
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Drdpmc.c16 unsigned int low, high; local
18 asm volatile("rdpmc" : "=a" (low), "=d" (high) : "c" (counter));
20 return low | ((u64)high) << 32;
25 unsigned int low, high; local
27 asm volatile("rdtsc" : "=a" (low), "=d" (high));
29 return low | ((u64)high) << 32;
/external/qemu/include/exec/
H A Dcpu-defs.h124 uint16_t high; member in struct:icount_decr_u16
130 uint16_t high; member in struct:icount_decr_u16
166 /* Number of cycles left, with interrupt flag in high bit. \
/external/skia/src/gpu/
H A DGrTHashTable.h96 int high = count - 1; local
98 while (high > low) {
99 int index = (low + high) >> 1;
103 high = index;
108 if (Key::Equals(*array[high], key)) {
111 SkASSERT(0 == high || Key::LessThan(*array[high - 1], key));
112 return high;
116 if (Key::LessThan(*array[high], key)) {
117 high
[all...]
/external/valgrind/main/VEX/priv/
H A Dir_inject.c147 IROp high, low; local
165 case Ity_I128: high = Iop_128HIto64; low = Iop_128to64; goto store128;
166 case Ity_F128: high = Iop_F128HItoF64; low = Iop_F128LOtoF64; goto store128;
167 case Ity_D128: high = Iop_D128HItoD64; low = Iop_D128LOtoD64; goto store128;
173 store_aux(irsb, endian, addr, unop(high, data));
178 store_aux(irsb, endian, next_addr, unop(high, data));
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3lexer.c51 static ANTLR3_BOOLEAN matchRange (pANTLR3_LEXER lexer, ANTLR3_UCHAR low, ANTLR3_UCHAR high);
810 matchRange(pANTLR3_LEXER lexer, ANTLR3_UCHAR low, ANTLR3_UCHAR high) argument
817 if ( c >= low && c <= high)
/external/bison/src/
H A Dlalr.c135 goto_number high; local
141 high = goto_map[sym - ntokens + 1] - 1;
145 aver (low <= high);
146 middle = (low + high) / 2;
153 high = middle - 1;
/external/chromium_org/content/browser/android/
H A Dedge_effect_l.cc52 T Clamp(T value, T low, T high) { argument
53 return value < low ? low : (value > high ? high : value);
/external/chromium_org/third_party/WebKit/Source/platform/
H A DDecimal.cpp128 UInt128(uint64_t low, uint64_t high) argument
129 : m_high(high), m_low(low)
135 uint64_t high() const { return m_high; } function in class:blink::DecimalPrivate::UInt128
143 static uint64_t makeUInt64(uint32_t low, uint32_t high) { return low | (static_cast<uint64_t>(high) << 32); } argument
178 // Returns high 64bit of 128bit product.
428 while (work.high()) {
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatBox.h101 void expandTo(const FloatPoint3D& low, const FloatPoint3D& high) argument
103 ASSERT(low.x() <= high.x());
104 ASSERT(low.y() <= high.y());
105 ASSERT(low.z() <= high.z());
111 float maxX = std::max(right(), high.x());
112 float maxY = std::max(bottom(), high.y());
113 float maxZ = std::max(front(), high.z());
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Dfixed-dtoa.cc44 UInt128(uint64_t high, uint64_t low) : high_bits_(high), low_bits_(low) { } argument
/external/chromium_org/third_party/icu/source/common/
H A Dlocmap.c1082 uint32_t high = gLocaleCount; local
1099 while (high > low) /*binary search*/{
1101 mid = (high+low) >> 1; /*Finds median*/
1108 high = mid;
H A Dusc_impl.c271 UChar high = scriptRun->textArray[scriptRun->scriptLimit]; local
272 UChar32 ch = high;
277 * if the character is a high surrogate and it's not the last one
280 if (high >= 0xD800 && high <= 0xDBFF && scriptRun->scriptLimit < scriptRun->textLength - 1) {
288 ch = (high - 0xD800) * 0x0400 + low - 0xDC00 + 0x10000;
337 * end it before the high surrogate

Completed in 1059 milliseconds

1234567891011