Home
last modified time | relevance | path

Searched refs:low (Results 1 – 25 of 1393) sorted by relevance

12345678910>>...56

/third_party/mbedtls/3rdparty/everest/library/kremlib/
DFStar_UInt128_extracted.c17 return projectee.low; in FStar_UInt128___proj__Mkuint128__item__low()
38 flat = { a.low + b.low, a.high + b.high + FStar_UInt128_carry(a.low + b.low, b.low) }; in FStar_UInt128_add()
46 flat = { a.low + b.low, a.high + b.high + FStar_UInt128_carry(a.low + b.low, b.low) }; in FStar_UInt128_add_underspec()
53 flat = { a.low + b.low, a.high + b.high + FStar_UInt128_carry(a.low + b.low, b.low) }; in FStar_UInt128_add_mod()
60 flat = { a.low - b.low, a.high - b.high - FStar_UInt128_carry(a.low, a.low - b.low) }; in FStar_UInt128_sub()
68 flat = { a.low - b.low, a.high - b.high - FStar_UInt128_carry(a.low, a.low - b.low) }; in FStar_UInt128_sub_underspec()
76 flat = { a.low - b.low, a.high - b.high - FStar_UInt128_carry(a.low, a.low - b.low) }; in FStar_UInt128_sub_mod_impl()
87 FStar_UInt128_uint128 flat = { a.low & b.low, a.high & b.high }; in FStar_UInt128_logand()
93 FStar_UInt128_uint128 flat = { a.low ^ b.low, a.high ^ b.high }; in FStar_UInt128_logxor()
99 FStar_UInt128_uint128 flat = { a.low | b.low, a.high | b.high }; in FStar_UInt128_logor()
[all …]
/third_party/vk-gl-cts/framework/common/
DtcuCompressedTexture.cpp431 inline deUint32 getBits (deUint64 src, int low, int high) in getBits() argument
433 const int numBits = (high-low) + 1; in getBits()
436 return (deUint32)((src >> low) & ((1u<<numBits)-1)); in getBits()
438 return (deUint32)((src >> low) & 0xFFFFFFFFu); in getBits()
1355 inline deUint32 getBits128 (deUint64 low, deUint64 high, deUint32 first, deUint32 last) in getBits128() argument
1357 const deUint64 d[2] = { low, high }; in getBits128()
1386 const deUint32 data0 = (deUint32)(low >> first) & mask0; in getBits128()
1830 const deUint64 low = ((deUint64*)src)[0]; in decompressBc6H() local
1832 const deUint32 d = mode < 10 ? getBits128(low, high, 77, 81) : 0; in decompressBc6H()
1843 g[2] |= getBits128(low, high, 2, 2) << 4; in decompressBc6H()
[all …]
/third_party/ffmpeg/libavcodec/
Dcfhddsp.c27 const int16_t *low, ptrdiff_t low_stride, in filter() argument
34 tmp = (11*low[0*low_stride] - 4*low[1*low_stride] + low[2*low_stride] + 4) >> 3; in filter()
39 tmp = ( 5*low[0*low_stride] + 4*low[1*low_stride] - low[2*low_stride] + 4) >> 3; in filter()
45 tmp = (low[(i-1)*low_stride] - low[(i+1)*low_stride] + 4) >> 3; in filter()
46 output[(2*i+0)*out_stride] = (tmp + low[i*low_stride] + high[i*high_stride]) >> 1; in filter()
50 tmp = (low[(i+1)*low_stride] - low[(i-1)*low_stride] + 4) >> 3; in filter()
51 output[(2*i+1)*out_stride] = (tmp + low[i*low_stride] - high[i*high_stride]) >> 1; in filter()
56 tmp = ( 5*low[i*low_stride] + 4*low[(i-1)*low_stride] - low[(i-2)*low_stride] + 4) >> 3; in filter()
61 tmp = (11*low[i*low_stride] - 4*low[(i-1)*low_stride] + low[(i-2)*low_stride] + 4) >> 3; in filter()
68 const int16_t *low, ptrdiff_t low_stride, in vert_filter() argument
[all …]
Dcabac_functions.h66 c->low+= (c->bytestream[0]<<9) + (c->bytestream[1]<<1); in refill()
68 c->low+= c->bytestream[0]<<1; in refill()
70 c->low -= CABAC_MASK; in refill()
82 c->low <<= shift; in renorm_cabac_decoder_once()
83 if(!(c->low & CABAC_MASK)) in renorm_cabac_decoder_once()
93 x= c->low ^ (c->low-1); in refill2()
96 i = ff_ctz(c->low) - CABAC_BITS; in refill2()
107 c->low += x<<i; in refill2()
122 lps_mask= ((c->range<<(CABAC_BITS+1)) - c->low)>>31; in get_cabac_inline()
124 c->low -= (c->range<<(CABAC_BITS+1)) & lps_mask; in get_cabac_inline()
[all …]
Dopus_rc.c67 uint32_t low, uint32_t high, in opus_rc_dec_update() argument
71 rc->range = low ? scale * (high - low) in opus_rc_dec_update()
92 unsigned int k, scale, total, symbol, low, high; in ff_opus_rc_dec_cdf() local
102 low = k ? cdf[k-1] : 0; in ff_opus_rc_dec_cdf()
104 opus_rc_dec_update(rc, scale, low, high, total); in ff_opus_rc_dec_cdf()
236 uint32_t k, scale, symbol, total, low, center; in ff_opus_rc_dec_uint_tri() local
245 low = k * (k + 1) >> 1; in ff_opus_rc_dec_uint_tri()
249 low = total - ((qn + 1 - k) * (qn + 2 - k) >> 1); in ff_opus_rc_dec_uint_tri()
253 opus_rc_dec_update(rc, scale, low, low + symbol, total); in ff_opus_rc_dec_uint_tri()
260 uint32_t symbol, low, total; in ff_opus_rc_enc_uint_tri() local
[all …]
Ddirac_arith.h76 unsigned low; member
96 c->low <<= shift; in renorm()
101 c->low <<= 1; in renorm()
127 c->low += new << counter; in refill()
137 unsigned low = c->low; in dirac_get_arith_bit() local
143 low -= range_times_prob << 16; in dirac_get_arith_bit()
151 : "+q"(bit), "+r"(range), "+r"(low) in dirac_get_arith_bit()
152 : "r"(c->low), "r"(c->low>>16), in dirac_get_arith_bit()
156 bit = (low >> 16) >= range_times_prob; in dirac_get_arith_bit()
158 low -= range_times_prob << 16; in dirac_get_arith_bit()
[all …]
Drangecoder.h36 int low; member
67 c->outstanding_byte = c->low >> 8; in renorm_encoder()
68 } else if (c->low <= 0xFF00) { in renorm_encoder()
72 c->outstanding_byte = c->low >> 8; in renorm_encoder()
73 } else if (c->low >= 0x10000) { in renorm_encoder()
77 c->outstanding_byte = (c->low >> 8) & 0xFF; in renorm_encoder()
82 c->low = (c->low & 0xFF) << 8; in renorm_encoder()
106 c->low += c->range - range1; in put_rac()
118 c->low <<= 8; in refill()
120 c->low += c->bytestream[0]; in refill()
[all …]
Dmss1.c42 if (c->low < 0x8000) { in arith_normalise()
43 if (c->low >= 0x4000 && c->high < 0xC000) { in arith_normalise()
45 c->low -= 0x4000; in arith_normalise()
52 c->low -= 0x8000; in arith_normalise()
57 c->low <<= 1; in arith_normalise()
70 int range = c->high - c->low + 1; in ARITH_GET_BIT()
71 int val = (((c->value - c->low + 1) << bits) - 1) / range; in ARITH_GET_BIT()
74 c->high = ((prob + range) >> bits) + c->low - 1; in ARITH_GET_BIT()
75 c->low += prob >> bits; in ARITH_GET_BIT()
84 int range = c->high - c->low + 1; in arith_get_number()
[all …]
Dbgmc.c520 unsigned int low = *l; in ff_bgmc_decode() local
527 unsigned int range = high - low + 1; in ff_bgmc_decode()
528 unsigned int target = (((value - low + 1) << FREQ_BITS) - 1) / range; in ff_bgmc_decode()
536 … high = low + ((range * cf_table[sx][(symbol) << delta] - (1 << FREQ_BITS)) >> FREQ_BITS); in ff_bgmc_decode()
537low = low + ((range * cf_table[sx][(symbol + 1) << delta]) >> FREQ_BITS); in ff_bgmc_decode()
541 if (low >= HALF) { in ff_bgmc_decode()
543 low -= HALF; in ff_bgmc_decode()
545 } else if (low >= FIRST_QTR && high < THIRD_QTR) { in ff_bgmc_decode()
547 low -= FIRST_QTR; in ff_bgmc_decode()
553 low *= 2; in ff_bgmc_decode()
[all …]
/third_party/selinux/libsepol/src/
Dport_record.c10 int low, high; member
21 int low, high; member
29 int low, int high, int proto, in sepol_port_key_create() argument
41 tmp_key->low = low; in sepol_port_key_create()
51 int *low, int *high, int *proto) in sepol_port_key_unpack() argument
54 *low = key->low; in sepol_port_key_unpack()
66 (handle, port->low, port->high, port->proto, key_ptr) < 0) { in sepol_port_key_extract()
70 port->low, port->high); in sepol_port_key_extract()
86 if ((port->low == key->low) && in sepol_port_compare()
90 if (port->low < key->low) in sepol_port_compare()
[all …]
Dibpkey_record.c17 int low, high; member
28 int low, high; member
100 int low, int high, in sepol_ibpkey_key_create() argument
114 tmp_key->low = low; in sepol_ibpkey_key_create()
126 subnet_prefix, low, high); in sepol_ibpkey_key_create()
132 uint64_t *subnet_prefix, int *low, int *high) in sepol_ibpkey_key_unpack() argument
135 *low = key->low; in sepol_ibpkey_key_unpack()
149 (handle, subnet_prefix_str, ibpkey->low, ibpkey->high, key_ptr) < 0) { in sepol_ibpkey_key_extract()
152 ibpkey->low, ibpkey->high); in sepol_ibpkey_key_extract()
174 if (ibpkey->low < key->low) in sepol_ibpkey_compare()
[all …]
/third_party/ffmpeg/libavcodec/x86/
Dcabac.h58 #define BRANCHLESS_GET_CABAC_UPDATE(ret, retq, low, range, tmp) \ argument
59 "cmp "low" , "tmp" \n\t"\
64 "sub "tmp" , "low" \n\t"
66 #define BRANCHLESS_GET_CABAC_UPDATE(ret, retq, low, range, tmp) \ argument
68 "sub "low" , "tmp" \n\t"\
75 "sub %%ecx , "low" \n\t"\
80 #define BRANCHLESS_GET_CABAC(ret, retq, statep, low, lowword, range, rangeq, tmp, tmpbyte, byte, en… argument
89 BRANCHLESS_GET_CABAC_UPDATE(ret, retq, low, range, tmp) \
93 "shl %%cl , "low" \n\t"\
102 "lea -1("low") , %%ecx \n\t"\
[all …]
/third_party/ffmpeg/tests/ref/fate/
Dfilter-metadata-ebur1281 …0.691|tag:lavfi.r128.I=-70.000|tag:lavfi.r128.LRA=0.000|tag:lavfi.r128.LRA.low=0.000|tag:lavfi.r12…
2 …0.691|tag:lavfi.r128.I=-70.000|tag:lavfi.r128.LRA=0.000|tag:lavfi.r128.LRA.low=0.000|tag:lavfi.r12…
3 …0.691|tag:lavfi.r128.I=-70.000|tag:lavfi.r128.LRA=0.000|tag:lavfi.r128.LRA.low=0.000|tag:lavfi.r12…
4 …0.691|tag:lavfi.r128.I=-21.340|tag:lavfi.r128.LRA=0.000|tag:lavfi.r128.LRA.low=0.000|tag:lavfi.r12…
5 …0.691|tag:lavfi.r128.I=-21.295|tag:lavfi.r128.LRA=0.000|tag:lavfi.r128.LRA.low=0.000|tag:lavfi.r12…
6 …0.691|tag:lavfi.r128.I=-21.276|tag:lavfi.r128.LRA=0.000|tag:lavfi.r128.LRA.low=0.000|tag:lavfi.r12…
7 …0.691|tag:lavfi.r128.I=-21.353|tag:lavfi.r128.LRA=0.000|tag:lavfi.r128.LRA.low=0.000|tag:lavfi.r12…
8 …0.691|tag:lavfi.r128.I=-21.475|tag:lavfi.r128.LRA=0.000|tag:lavfi.r128.LRA.low=0.000|tag:lavfi.r12…
9 …0.691|tag:lavfi.r128.I=-21.613|tag:lavfi.r128.LRA=0.000|tag:lavfi.r128.LRA.low=0.000|tag:lavfi.r12…
10 …0.691|tag:lavfi.r128.I=-21.807|tag:lavfi.r128.LRA=0.000|tag:lavfi.r128.LRA.low=0.000|tag:lavfi.r12…
[all …]
/third_party/ffmpeg/libavcodec/tests/
Dcabac.c47 if (c->dec.low < 0x100) { in renorm_cabac_encoder()
49 } else if (c->dec.low < 0x200) { in renorm_cabac_encoder()
51 c->dec.low -= 0x100; in renorm_cabac_encoder()
54 c->dec.low -= 0x200; in renorm_cabac_encoder()
58 c->dec.low += c->dec.low; in renorm_cabac_encoder()
70 c->dec.low += c->dec.range - RangeLPS; in put_cabac()
83 c->dec.low += c->dec.low; in put_cabac_bypass()
86 c->dec.low += c->dec.range; in put_cabac_bypass()
89 if (c->dec.low < 0x200) { in put_cabac_bypass()
91 } else if (c->dec.low < 0x400) { in put_cabac_bypass()
[all …]
/third_party/protobuf/php/src/Google/Protobuf/Internal/
DCodedOutputStream.php109 $low = 0;
111 GPBUtil::divideInt64ToInt32($value, $high, $low, $trim);
113 $low = $value;
116 while (($low >= 0x80 || $low < 0) || $high != 0) {
117 $buffer[$current] = chr($low | 0x80);
121 $low = (($low >> 7) & ~(0x7F << ((PHP_INT_SIZE << 3) - 7)) | $carry);
124 $buffer[$current] = chr($low);
140 $low = 0;
142 GPBUtil::divideInt64ToInt32($value, $high, $low);
144 $low = $value & 0xFFFFFFFF;
[all …]
/third_party/mesa3d/src/compiler/glsl/
Dopt_minmax.cpp58 minmax_range(ir_constant *low = NULL, ir_constant *high = NULL) in minmax_range() argument
60 this->low = low; in minmax_range()
69 ir_constant *low; member in __anonddfb8bea0111::minmax_range
284 if (!r0.low) { in combine_range()
285 ret.low = ismin ? r0.low : r1.low; in combine_range()
286 } else if (!r1.low) { in combine_range()
287 ret.low = ismin ? r1.low : r0.low; in combine_range()
289 ret.low = ismin ? smaller_constant(r0.low, r1.low) : in combine_range()
290 larger_constant(r0.low, r1.low); in combine_range()
313 if (!r0.low) in range_intersection()
[all …]
/third_party/mesa3d/src/compiler/nir/
Dnir_opt_load_store_vectorize.c655 struct entry *low, struct entry *high, unsigned size) in new_bitsize_acceptable() argument
664 unsigned high_offset = high->offset_signed - low->offset_signed; in new_bitsize_acceptable()
667 unsigned common_bit_size = MIN2(get_bit_size(low), get_bit_size(high)); in new_bitsize_acceptable()
674 if (!ctx->options->callback(low->align_mul, in new_bitsize_acceptable()
675 low->align_offset, in new_bitsize_acceptable()
677 low->intrin, high->intrin, in new_bitsize_acceptable()
681 if (low->is_store) { in new_bitsize_acceptable()
682 unsigned low_size = low->intrin->num_components * get_bit_size(low); in new_bitsize_acceptable()
690 unsigned write_mask = nir_intrinsic_write_mask(low->intrin); in new_bitsize_acceptable()
691 if (!nir_component_mask_can_reinterpret(write_mask, get_bit_size(low), new_bit_size)) in new_bitsize_acceptable()
[all …]
/third_party/pulseaudio/src/pulse/
Dgccmacro.h141 #define PA_CLAMP(x, low, high) \ argument
144 typeof(low) _low = (low); \
149 #define PA_CLAMP(x, low, high) (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x))) argument
153 #define PA_CLAMP_UNLIKELY(x, low, high) \ argument
156 typeof(low) _low = (low); \
161 #define PA_CLAMP_UNLIKELY(x, low, high) (PA_UNLIKELY((x) > (high)) ? (high) : (PA_UNLIKELY((x) < (l… argument
/third_party/elfutils/tests/
Ddwarf_default_lower_bound.c34 Dwarf_Sword low; in test_lang() local
35 int res = dwarf_default_lower_bound (lang, &low); in test_lang()
57 if (low != 0 && low != 1) in test_lang()
59 printf ("unexpected lower bound %" PRId64 " for %s\n", low, name); in test_lang()
63 printf ("%s: %" PRId64 "\n", name, low); in test_lang()
69 Dwarf_Sword low; in main() local
71 if (dwarf_default_lower_bound (-1, &low) == 0) in main()
73 printf ("Bad lang code -1 succeeded (%" PRId64 ")\n", low); in main()
/third_party/typescript/tests/baselines/reference/
DreturnTypeInferenceNotTooBroad.types12 low?: number;
13 >low : number
28 export const y = sepsis({ low: 1, sign: { kind: 'a', a: 3 }});
30 >sepsis({ low: 1, sign: { kind: 'a', a: 3 }}) : Wrapper<{ kind: "a"; a: 3; }>
32 >{ low: 1, sign: { kind: 'a', a: 3 }} : { low: number; sign: { kind: "a"; a: 3; }; }
33 >low : number
50 export const yone = unwrap(sepsis({ low: 1, sign: { kind: 'a', a: 3 }}));
52 >unwrap(sepsis({ low: 1, sign: { kind: 'a', a: 3 }})) : { kind: "a"; a: 3; }
54 >sepsis({ low: 1, sign: { kind: 'a', a: 3 }}) : Wrapper<{ kind: "a"; a: 3; }>
56 >{ low: 1, sign: { kind: 'a', a: 3 }} : { low: number; sign: { kind: "a"; a: 3; }; }
[all …]
/third_party/icu/icu4c/source/data/translit/
Dmy_my_FONIPA.txt45 $low = \u0300;
46 $coda = [$creaky $high $low ɴ ʔ ə]; # TODO: remove if unused
54 # Hmm, what would happen if the syllable ending in kinzi had non-low tone?
85 င\u103A → ɪ $low ɴ;
89 ဉ\u103A → ɪ $low ɴ;
92 ည\u103A → ɛ $low;
95 ဏ\u103A → a $low ɴ;
99 န\u103A → a $low ɴ;
103 မ\u103A → a $low ɴ;
106 ယ\u103A → ɛ $low;
[all …]
/third_party/skia/third_party/externals/icu/source/data/translit/
Dmy_my_FONIPA.txt45 $low = \u0300;
46 $coda = [$creaky $high $low ɴ ʔ ə]; # TODO: remove if unused
54 # Hmm, what would happen if the syllable ending in kinzi had non-low tone?
85 င\u103A → ɪ $low ɴ;
89 ဉ\u103A → ɪ $low ɴ;
92 ည\u103A → ɛ $low;
95 ဏ\u103A → a $low ɴ;
99 န\u103A → a $low ɴ;
103 မ\u103A → a $low ɴ;
106 ယ\u103A → ɛ $low;
[all …]
/third_party/node/deps/npm/node_modules/semver/ranges/
Doutside.js47 let low = null variable
54 low = low || comparator
57 } else if (ltfn(comparator.semver, low.semver, options)) {
58 low = comparator
70 if ((!low.operator || low.operator === comp) &&
71 ltefn(version, low.semver)) {
73 } else if (low.operator === ecomp && ltfn(version, low.semver)) {
/third_party/mesa3d/src/freedreno/registers/
Dgen_header.py35 def __init__(self, name, low, high, shr, type, parser): argument
37 self.low = low
44 if low < 0 or low > 31:
45 raise parser.error("low attribute out of range: %d" % low)
48 if high < low:
49 raise parser.error("low is greater than high: low=%d, high=%d" % (low, high))
50 if self.type == "boolean" and not low == high:
52 elif self.type == "float" and not (high - low == 31 or high - low == 15):
76 elif self.type == "float" and self.high - self.low == 31:
79 elif self.type == "float" and self.high - self.low == 15:
[all …]
/third_party/python/Lib/asyncio/
Dtransports.py77 def set_write_buffer_limits(self, high=None, low=None): argument
308 def _set_write_buffer_limits(self, high=None, low=None): argument
310 if low is None:
313 high = 4 * low
314 if low is None:
315 low = high // 4
317 if not high >= low >= 0:
322 self._low_water = low
324 def set_write_buffer_limits(self, high=None, low=None): argument
325 self._set_write_buffer_limits(high=high, low=low)

12345678910>>...56