Home
last modified time | relevance | path

Searched refs:lower (Results 1 - 25 of 667) sorted by relevance

12345678910>>...27

/third_party/python/Lib/importlib/metadata/
H A D_text.py68 return self.lower() < other.lower()
71 return self.lower() > other.lower()
74 return self.lower() == other.lower()
77 return self.lower() != other.lower()
80 return hash(self.lower())
83 return super().lower()
91 def lower(self): global() member in FoldedCase
[all...]
/third_party/rust/crates/regex/regex-syntax/src/hir/
H A Dinterval.rs163 if other.ranges[b].upper() < self.ranges[a].lower() { in difference()
169 if self.ranges[a].upper() < other.ranges[b].lower() { in difference()
265 if self.ranges[0].lower() > I::Bound::min_value() { in negate()
266 let upper = self.ranges[0].lower().decrement(); in negate()
270 let lower = self.ranges[i - 1].upper().increment(); in negate()
271 let upper = self.ranges[i].lower().decrement(); in negate()
272 self.ranges.push(I::create(lower, upper)); in negate()
275 let lower = self.ranges[drain_end - 1].upper().increment(); in negate()
276 self.ranges.push(I::create(lower, I::Bound::max_value())); in negate()
340 fn lower( in next() functions
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_lower_load_const_to_scalar.c39 lower_load_const_instr_scalar(nir_load_const_instr *lower) in lower_load_const_instr_scalar() argument
41 if (lower->def.num_components == 1) in lower_load_const_instr_scalar()
45 nir_builder_init(&b, nir_cf_node_get_function(&lower->instr.block->cf_node)); in lower_load_const_instr_scalar()
46 b.cursor = nir_before_instr(&lower->instr); in lower_load_const_instr_scalar()
50 for (unsigned i = 0; i < lower->def.num_components; i++) { in lower_load_const_instr_scalar()
52 nir_load_const_instr_create(b.shader, 1, lower->def.bit_size); in lower_load_const_instr_scalar()
53 load_comp->value[0] = lower->value[i]; in lower_load_const_instr_scalar()
59 nir_ssa_def *vec = nir_vec(&b, loads, lower->def.num_components); in lower_load_const_instr_scalar()
62 nir_ssa_def_rewrite_uses(&lower->def, vec); in lower_load_const_instr_scalar()
63 nir_instr_remove(&lower in lower_load_const_instr_scalar()
[all...]
/third_party/skia/third_party/externals/tint/fuzzers/
H A Dmersenne_twister_engine.cc30 /// @param lower - Lower bound of integer generated
32 /// @returns i, where lower <= i < upper
34 I RandomInteger(std::mt19937_64* engine, I lower, I upper) { in RandomInteger() argument
35 assert(lower < upper && "|lower| must be strictly less than |upper|"); in RandomInteger()
36 return std::uniform_int_distribution<I>(lower, upper - 1)(*engine); in RandomInteger()
43 uint32_t MersenneTwisterEngine::RandomUInt32(uint32_t lower, uint32_t upper) {
44 return RandomInteger(&engine_, lower, upper);
47 uint64_t MersenneTwisterEngine::RandomUInt64(uint64_t lower, uint64_t upper) {
48 return RandomInteger(&engine_, lower, uppe
[all...]
H A Drandom_generator.cc54 uint32_t RandomGenerator::GetUInt32(uint32_t lower, uint32_t upper) { in GetUInt32() argument
55 assert(lower < upper && "|lower| must be strictly less than |upper|"); in GetUInt32()
56 return engine_->RandomUInt32(lower, upper); in GetUInt32()
64 uint64_t RandomGenerator::GetUInt64(uint64_t lower, uint64_t upper) { in GetUInt64() argument
65 assert(lower < upper && "|lower| must be strictly less than |upper|"); in GetUInt64()
66 return engine_->RandomUInt64(lower, upper); in GetUInt64()
107 // Has lower precedence than kHashDesiredMinBytes. in CalculateSeed()
/third_party/icu/icu4c/source/i18n/
H A Dcollationweights.cpp125 // We use only the lower 16 bits for secondary weights. in initForSecondary()
139 // We use only the lower 16 bits for tertiary weights. in initForTertiary()
220 printf("length of lower limit 0x%08lx is %ld\n", lowerLimit, lowerLength); in getWeightRanges()
228 printf("error: no space between lower & upper limits\n"); in getWeightRanges()
237 printf("error: lower limit 0x%08lx is a prefix of upper limit 0x%08lx\n", lowerLimit, upperLimit); in getWeightRanges()
242 /* if the upper limit is a prefix of the lower limit then the earlier test lowerLimit>=upperLimit has caught it */ in getWeightRanges()
244 WeightRange lower[5], middle, upper[5]; /* [0] and [1] are not used - this simplifies indexing */ in getWeightRanges() local
245 uprv_memset(lower, 0, sizeof(lower)); in getWeightRanges()
252 * lower[ in getWeightRanges()
[all...]
/third_party/mesa3d/src/compiler/glsl/
H A Dlower_jumps.cpp72 * lower strength. Accordingly, strength is used as a heuristic to
253 * Note that visiting a jump does not lower it. That is the
302 * Insert the instructions necessary to lower a return statement,
323 * If the given instruction is a return, lower it to instructions
412 bool lower; in should_lower_jump() local
416 lower = false; /* don't change this, code relies on it */ in should_lower_jump()
419 lower = lower_continue; in should_lower_jump()
422 lower = false; in should_lower_jump()
425 /* never lower return at the end of a this->function */ in should_lower_jump()
427 lower in should_lower_jump()
552 int lower; visit() local
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Dcollationweights.cpp125 // We use only the lower 16 bits for secondary weights. in initForSecondary()
139 // We use only the lower 16 bits for tertiary weights. in initForTertiary()
220 printf("length of lower limit 0x%08lx is %ld\n", lowerLimit, lowerLength); in getWeightRanges()
228 printf("error: no space between lower & upper limits\n"); in getWeightRanges()
237 printf("error: lower limit 0x%08lx is a prefix of upper limit 0x%08lx\n", lowerLimit, upperLimit); in getWeightRanges()
242 /* if the upper limit is a prefix of the lower limit then the earlier test lowerLimit>=upperLimit has caught it */ in getWeightRanges()
244 WeightRange lower[5], middle, upper[5]; /* [0] and [1] are not used - this simplifies indexing */ in getWeightRanges() local
245 uprv_memset(lower, 0, sizeof(lower)); in getWeightRanges()
252 * lower[ in getWeightRanges()
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dcollationweights.cpp125 // We use only the lower 16 bits for secondary weights. in initForSecondary()
139 // We use only the lower 16 bits for tertiary weights. in initForTertiary()
220 printf("length of lower limit 0x%08lx is %ld\n", lowerLimit, lowerLength); in getWeightRanges()
228 printf("error: no space between lower & upper limits\n"); in getWeightRanges()
237 printf("error: lower limit 0x%08lx is a prefix of upper limit 0x%08lx\n", lowerLimit, upperLimit); in getWeightRanges()
242 /* if the upper limit is a prefix of the lower limit then the earlier test lowerLimit>=upperLimit has caught it */ in getWeightRanges()
244 WeightRange lower[5], middle, upper[5]; /* [0] and [1] are not used - this simplifies indexing */ in getWeightRanges() local
245 uprv_memset(lower, 0, sizeof(lower)); in getWeightRanges()
252 * lower[ in getWeightRanges()
[all...]
/third_party/ltp/testcases/kernel/security/integrity/ima/tests/
H A Devm_overlay.sh22 lower="$TST_MNTPOINT/lower"
26 mkdir -p $lower $upper $work $merged
38 TST_MNT_PARAMS="-o lowerdir=$lower,upperdir=$upper,workdir=$work"
49 EXPECT_PASS echo lower \> $lower/$file
58 EXPECT_PASS echo lower \> $lower/$file
/third_party/skia/tests/
H A DApplyGammaTest.cpp70 float lower = std::max(0.f, srcComponent - error); in check_gamma() local
73 lower = linear_to_srgb(lower / 255.f); in check_gamma()
76 lower = srgb_to_linear(lower / 255.f); in check_gamma()
79 lower *= alpha; in check_gamma()
81 SkASSERT(lower >= 0.f && lower <= 255.f); in check_gamma()
84 if (dstComponent < SkScalarFloorToInt(lower) || in check_gamma()
88 uint8_t expectedComponent = SkScalarRoundToInt((lower in check_gamma()
[all...]
H A DSRGBReadWritePixelsTest.cpp50 float lower = std::max(0.f, (float) inputComponent - error); in check_conversion() local
52 lower = CONVERT(lower / 255.f); in check_conversion()
54 SkASSERT(lower >= 0.f && lower <= 255.f); in check_conversion()
57 if (outputComponent < SkScalarFloorToInt(lower * 255.f) || in check_conversion()
75 float lower = std::max(0.f, (float) inputComponent - error); in check_double_conversion() local
77 lower = FORWARD(lower / 255.f); in check_double_conversion()
79 SkASSERT(lower > in check_double_conversion()
[all...]
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationWeights.java45 // We use only the lower 16 bits for secondary weights. in initForSecondary()
58 // We use only the lower 16 bits for tertiary weights. in initForTertiary()
295 // printf("length of lower limit 0x%08lx is %ld\n", lowerLimit, lowerLength); in getWeightRanges()
301 // printf("error: no space between lower & upper limits\n"); in getWeightRanges()
308 // printf("error: lower limit 0x%08lx is a prefix of upper limit 0x%08lx\n", lowerLimit, upperLimit); in getWeightRanges()
312 /* if the upper limit is a prefix of the lower limit then the earlier test lowerLimit>=upperLimit has caught it */ in getWeightRanges()
314 WeightRange[] lower = new WeightRange[5]; /* [0] and [1] are not used - this simplifies indexing */ in getWeightRanges()
321 * lower[4] 4 in getWeightRanges()
322 * lower[3] 3 in getWeightRanges()
323 * lower[ in getWeightRanges()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/coll/
H A DCollationWeights.java47 // We use only the lower 16 bits for secondary weights. in initForSecondary()
60 // We use only the lower 16 bits for tertiary weights. in initForTertiary()
297 // printf("length of lower limit 0x%08lx is %ld\n", lowerLimit, lowerLength); in getWeightRanges()
303 // printf("error: no space between lower & upper limits\n"); in getWeightRanges()
310 // printf("error: lower limit 0x%08lx is a prefix of upper limit 0x%08lx\n", lowerLimit, upperLimit); in getWeightRanges()
314 /* if the upper limit is a prefix of the lower limit then the earlier test lowerLimit>=upperLimit has caught it */ in getWeightRanges()
316 WeightRange[] lower = new WeightRange[5]; /* [0] and [1] are not used - this simplifies indexing */ in getWeightRanges()
323 * lower[4] 4 in getWeightRanges()
324 * lower[3] 3 in getWeightRanges()
325 * lower[ in getWeightRanges()
[all...]
/third_party/python/Lib/email/
H A Dmessage.py87 f = f[:i].strip().lower() + '=' + f[i+1:].strip()
290 cte = str(self.get('content-transfer-encoding', '')).lower()
428 lname = name.lower()
431 if k.lower() == lname:
443 name = name.lower()
446 if k.lower() != name:
451 return name.lower() in [k.lower() for k, v in self._headers]
495 name = name.lower()
497 if k.lower()
[all...]
/third_party/python/Objects/
H A Dunicodectype.c33 const int lower; member
205 return _PyUnicode_ExtendedCase[ctype->lower & 0xFFFF]; in _PyUnicode_ToLowercase()
206 return ch + ctype->lower; in _PyUnicode_ToLowercase()
214 int index = ctype->lower & 0xFFFF; in _PyUnicode_ToLowerFull()
215 int n = ctype->lower >> 24; in _PyUnicode_ToLowerFull()
221 res[0] = ch + ctype->lower; in _PyUnicode_ToLowerFull()
261 if (ctype->flags & EXTENDED_CASE_MASK && (ctype->lower >> 20) & 7) { in _PyUnicode_ToFoldedFull()
262 int index = (ctype->lower & 0xFFFF) + (ctype->lower >> 24); in _PyUnicode_ToFoldedFull()
263 int n = (ctype->lower >> 2 in _PyUnicode_ToFoldedFull()
[all...]
H A Dsliceobject.c387 PyObject *upper=NULL, *lower=NULL; in _PySlice_GetLongIndices() local
410 /* Find lower and upper bounds for start and stop. */ in _PySlice_GetLongIndices()
412 lower = PyLong_FromLong(-1L); in _PySlice_GetLongIndices()
413 if (lower == NULL) in _PySlice_GetLongIndices()
416 upper = PyNumber_Add(length, lower); in _PySlice_GetLongIndices()
421 lower = _PyLong_GetZero(); in _PySlice_GetLongIndices()
422 Py_INCREF(lower); in _PySlice_GetLongIndices()
429 start = step_is_negative ? upper : lower; in _PySlice_GetLongIndices()
445 cmp_result = PyObject_RichCompareBool(start, lower, Py_LT); in _PySlice_GetLongIndices()
449 Py_INCREF(lower); in _PySlice_GetLongIndices()
[all...]
/third_party/protobuf/php/ext/google/protobuf/
H A Dnames.c118 char* lower = calloc(1, length + 1); in is_reserved() local
119 memcpy(lower, segment, length); in is_reserved()
121 while(lower[i]) { in is_reserved()
122 lower[i] = nolocale_tolower(lower[i]); in is_reserved()
125 lower[length] = 0; in is_reserved()
126 result = is_reserved_name(lower); in is_reserved()
127 free(lower); in is_reserved()
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_1d_table.cpp43 uint32 lower, in SubDivide()
48 uint32 range = upper - lower; in SubDivide()
56 fTable [lower]); in SubDivide()
70 uint32 middle = (lower + upper) >> 1; in SubDivide()
77 SubDivide (function, lower, middle, maxDelta); in SubDivide()
88 real64 y0 = fTable [lower]; in SubDivide()
93 for (uint32 j = lower + 1; j < upper; j++) in SubDivide()
42 SubDivide(const dng_1d_function &function, uint32 lower, uint32 upper, real32 maxDelta) SubDivide() argument
/third_party/python/Lib/
H A D_strptime.py83 a_weekday = [calendar.day_abbr[i].lower() for i in range(7)]
84 f_weekday = [calendar.day_name[i].lower() for i in range(7)]
90 a_month = [calendar.month_abbr[i].lower() for i in range(13)]
91 f_month = [calendar.month_name[i].lower() for i in range(13)]
104 am_pm.append(time.strftime("%p", time_tuple).lower())
117 date_time[0] = time.strftime("%c", time_tuple).lower()
118 date_time[1] = time.strftime("%x", time_tuple).lower()
119 date_time[2] = time.strftime("%X", time_tuple).lower()
162 no_saving = frozenset({"utc", "gmt", self.tzname[0].lower()})
164 has_saving = frozenset({self.tzname[1].lower()})
[all...]
/third_party/NuttX/include/nuttx/fs/
H A Dautomount.h63 /* This is the type of the automount media change handler. The lower level
72 (*automount_handler_t)(FAR const struct automount_lower_s *lower,
120 CODE int (*attach)(FAR const struct automount_lower_s *lower,
122 CODE void (*enable)(FAR const struct automount_lower_s *lower,
124 CODE bool (*inserted)(FAR const struct automount_lower_s *lower);
150 * lower - Persistent board configuration data
159 FAR void *automount_initialize(FAR const struct automount_lower_s *lower);
/third_party/node/deps/v8/src/objects/
H A Djs-temporal-objects-inl.h20 #define TEMPORAL_INLINE_GETTER_SETTER(T, data, field, lower, upper, B) \
23 DCHECK_LE(lower, field); \
31 DCHECK_LE(lower, v); \
35 #define TEMPORAL_INLINE_SIGNED_GETTER_SETTER(T, data, field, lower, upper, B) \
38 DCHECK_LE(lower, field); \
53 DCHECK_LE(lower, v); \
/third_party/python/Lib/wsgiref/
H A Dheaders.py63 name = self._convert_string_type(name.lower())
64 self._headers[:] = [kv for kv in self._headers if kv[0].lower() != name]
90 name = self._convert_string_type(name.lower())
91 return [kv[1] for kv in self._headers if kv[0].lower()==name]
96 name = self._convert_string_type(name.lower())
98 if k.lower()==name:
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
H A DgenIndexFilters.bat28 # Latin-X NFD lower
91 my $lower = '';
95 $lower = 'lower';
101 print STDERR "$id $NFXD $lower\n";
102 my $set = getSourceSet($id, $NFXD, $lower);
118 my $lower = shift;
119 my $set = `java -classpath $CLASSES com.ibm.tools.translit.genIndexFilters $ID $NFXD $lower`;
/third_party/node/deps/v8/src/compiler/
H A Dsimplified-lowering.cc798 static_assert(retype<T>() || lower<T>(), in EnqueueInput()
814 static constexpr bool lower() { in lower() function in v8::internal::compiler::RepresentationSelector
981 static_assert(retype<T>() || lower<T>(), in ProcessRemainingInputs()
1033 if (lower<T>()) { in VisitUnused()
1049 if (lower<T>()) DeferReplacement(node, node->InputAt(0)); in VisitNoop()
1168 if (lower<T>()) { in VisitSelect()
1193 if (lower<T>()) { in VisitPhi()
1213 if (lower<T>()) { in VisitObjectIs()
1218 if (lower<T>() && !input_type.Maybe(type)) { in VisitObjectIs()
1229 if (lower< in VisitCheck()
[all...]

Completed in 20 milliseconds

12345678910>>...27