HomeSort by relevance Sort by last modified time
    Searched refs:upper (Results 76 - 100 of 934) sorted by null

1 2 34 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/
MetaFileParser.py 60 # Only upper case letters, digit and '_' are allowed
300 if self._SectionName != '' and self._SectionName != ItemList[0].upper():
303 self._SectionName = ItemList[0].upper()
318 S1 = ItemList[1].upper()
325 if self._SectionName.upper() in SECTIONS_HAVE_ITEM_PCD:
328 S2 = ItemList[2].upper()
474 TAB_UNKNOWN.upper() : MODEL_UNKNOWN,
475 TAB_INF_DEFINES.upper() : MODEL_META_DATA_HEADER,
477 TAB_BUILD_OPTIONS.upper() : MODEL_META_DATA_BUILD_OPTION,
478 TAB_INCLUDES.upper() : MODEL_EFI_INCLUDE,
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Object/Parser/
DecObject.py 136 Arch = Arch.upper()
179 self._SecName = TAB_DEC_DEFINES.upper()
269 self._SecName = TAB_INCLUDES.upper()
314 self._SecName = TAB_LIBRARY_CLASSES.upper()
357 self._SecName = TAB_PCDS.upper()
386 PcdType = PcdType.upper()
387 Arch = Arch.upper()
397 PcdType = PcdType.upper()
440 PcdType = PcdType.upper()
507 self._SecName = TAB_GUIDS.upper()
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/MetaFileWorkspace/
MetaFileParser.py 62 # Only upper case letters, digit and '_' are allowed
266 if self._SectionName == TAB_USER_EXTENSIONS.upper() and self._CurrentLine.upper().endswith('.UNI'):
270 IsModuleUni = self.MetaFile.upper().endswith('.INF')
293 if self._SectionName != '' and self._SectionName != ItemList[0].upper():
296 self._SectionName = ItemList[0].upper()
305 S1 = ItemList[1].upper()
311 S2 = ItemList[2].upper()
418 TAB_UNKNOWN.upper() : MODEL_UNKNOWN,
419 TAB_INF_DEFINES.upper() : MODEL_META_DATA_HEADER,
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
Fd.py 49 if self.FdUiName.upper() + 'fd' in GenFds.ImageBinDict.keys():
50 return GenFds.ImageBinDict[self.FdUiName.upper() + 'fd']
138 GenFds.ImageBinDict[self.FdUiName.upper() + 'fd'] = FdFileName
155 FvList.append(RegionData.upper())
156 FvAddDict[RegionData.upper()] = (int(self.BaseAddress,16) + \
161 FvList.append(RegionData.upper())
162 FvObj = GenFdsGlobalVariable.FdfParser.Profile.FvDict.get(RegionData.upper())
171 FvAddDict[RegionData.upper()] = (int(self.BaseAddress,16) + \
CapsuleData.py 83 if self.FvName.upper() in GenFdsGlobalVariable.FdfParser.Profile.FvDict.keys():
84 FvObj = GenFdsGlobalVariable.FdfParser.Profile.FvDict.get(self.FvName.upper())
115 if self.FdName.upper() in GenFdsGlobalVariable.FdfParser.Profile.FdDict.keys():
116 FdObj = GenFdsGlobalVariable.FdfParser.Profile.FdDict.get(self.FdName.upper())
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineStorage.h 17 * The upper elements
144 inline Scalar& upper(Index i) { function in class:Eigen::SkylineStorage
148 inline const Scalar& upper(Index i) const { function in class:Eigen::SkylineStorage
176 static SkylineStorage Map(Index* upperProfile, Index* lowerProfile, Scalar* diag, Scalar* upper, Scalar* lower, Index size, Index upperSize, Index lowerSize) {
181 res.m_upper = upper;
206 Scalar* upper = new Scalar[upperSize]; local
219 memcpy(upper, m_upper, copyUpperSize * sizeof (Scalar));
233 m_upper = upper;
  /external/minijail/tools/
compiler.py 91 upper = lower + 1
92 while upper < len(entries):
93 if entries[upper - 1].filter != entries[upper].filter:
95 if entries[upper - 1].number + 1 != entries[upper].number:
97 upper += 1
98 yield SyscallPolicyRange(*entries[lower:upper])
99 lower = upper
123 # Syscall range aligned with the upper bound
    [all...]
  /art/compiler/optimizing/
bounds_check_elimination.cc 220 // Try to narrow upper bound. Returns the lowest of the two if possible.
231 // Favor array length as upper bound.
283 * Represent a range of lower bound and upper bound, both being inclusive.
291 ValueRange(ScopedArenaAllocator* allocator, ValueBound lower, ValueBound upper)
292 : allocator_(allocator), lower_(lower), upper_(upper) {}
341 // and invalidate the upper bound.
344 ValueBound upper = upper_.Add(constant, &overflow, &underflow); local
346 // Upper bound overflow will wrap around to negative values
350 return new (allocator_) ValueRange(allocator_, lower, upper);
425 // max possible integer value of range's upper value
426 int32_t upper = std::numeric_limits<int32_t>::max(); variable
463 ValueBound upper = ValueBound::NarrowUpperBound(bound_, range->GetUpper()); variable
722 ValueBound upper = bound; local
835 ValueBound upper = ValueBound(array_length, -1); \/\/ array_length - 1 variable
900 ValueBound upper = ValueBound::Max(); variable
1050 ValueBound upper = right_range->GetUpper(); variable
1193 ValueBound upper = ValueBound(right, -1); \/\/ array_length - 1 variable
1219 ValueBound upper = ValueBound(new_array, -right_const); variable
    [all...]
  /external/webp/src/dsp/
lossless_sse2.c 184 static void PredictorAdd0_SSE2(const uint32_t* in, const uint32_t* upper,
194 VP8LPredictorsAdd_C[0](in + i, upper + i, num_pixels - i, out + i);
199 static void PredictorAdd1_SSE2(const uint32_t* in, const uint32_t* upper,
220 VP8LPredictorsAdd_C[1](in + i, upper + i, num_pixels - i, out + i);
227 static void PredictorAdd##X##_SSE2(const uint32_t* in, const uint32_t* upper, \
237 VP8LPredictorsAdd_C[(X)](in + i, upper + i, num_pixels - i, out + i); \
242 GENERATE_PREDICTOR_1(2, upper[i])
244 GENERATE_PREDICTOR_1(3, upper[i + 1])
246 GENERATE_PREDICTOR_1(4, upper[i - 1])
256 static void PredictorAdd##X##_SSE2(const uint32_t* in, const uint32_t* upper, \
    [all...]
lossless_common.h 177 static void PREDICTOR_ADD(const uint32_t* in, const uint32_t* upper, \
181 const uint32_t pred = (PREDICTOR)(out[x - 1], upper + x); \
189 static void PREDICTOR_SUB(const uint32_t* in, const uint32_t* upper, \
193 const uint32_t pred = (PREDICTOR)(in[x - 1], upper + x); \
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
fixheader.py 32 magic = magic + c.upper()
  /external/dng_sdk/source/
dng_1d_table.h 114 uint32 upper,
  /external/elfutils/libdw/
dwarf_aggregate_size.c 86 Dwarf_Sword upper; local
90 attr_mem), &upper) != 0)
108 if (unlikely (lower > upper))
110 count = upper - lower + 1;
  /external/fonttools/Lib/fontTools/varLib/
models.py 44 lower, default, upper = triple
45 assert lower <= default <= upper, "invalid axis values: %3.3f, %3.3f %3.3f"%(lower, default, upper)
46 v = max(min(v, upper), lower)
52 v = (v - default) / (upper - default)
122 for axis,(lower,peak,upper) in support.items():
127 if lower > peak or peak > upper:
129 if lower < 0. and upper > 0.:
137 if v <= lower or upper <= v:
143 scalar *= (v - upper) / (peak - upper
    [all...]
  /external/python/cpython2/Tools/scripts/
fixheader.py 32 magic = magic + c.upper()
  /external/python/cpython3/Tools/scripts/
fixheader.py 32 magic = magic + c.upper()
  /external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-mca/X86/BtVer2/
clear-super-register-1.s 8 ## The upper portion of RAX is cleared.
  /external/tensorflow/tensorflow/contrib/coder/kernels/
range_coder.cc 37 void RangeEncoder::Encode(int32 lower, int32 upper, string* sink) {
38 // Input requirement: 0 <= lower < upper <= 2^precision.
40 DCHECK_LT(lower, upper);
41 DCHECK_LE(upper, 1 << precision_);
53 // For short notation, let u := lower and v := upper.
66 const uint32 b = ((size * static_cast<uint64>(upper)) >> precision_) - 1;
113 // bits. Therefore prior to the shift, The upper 16 bits in base should be
116 // If the upper 16 bits of all values in the interval were the same, i.e., if
121 // If the upper 16 bits were not all the same, since this happens only when
122 // size <= 2^16, the upper 16 bits may differ only by one, i.e.
    [all...]
range_coder.h 34 // Encodes a half-open interval [lower / 2^precision, upper / 2^precision).
37 // upper represent
39 // Pr(X < x0 + 1) = upper / 2^precision,
43 // To encode value 0, lower = 0 and upper = Pr(X = 0).
44 // To encode value 1, lower = Pr(X = 0) and upper = Pr(X = 0 or 1).
45 // To encode value 2, lower = Pr(X = 0 or 1) and upper = Pr(X = 0, 1, or 2).
48 // REQUIRES: 0 <= lower < upper <= 2^precision.
49 void Encode(int32 lower, int32 upper, string* sink);
  /external/tensorflow/tensorflow/contrib/distributions/python/ops/bijectors/
fill_triangular.py 53 b = tfb.FillTriangular(upper=False)
59 b = tfb.FillTriangular(upper=True)
77 upper=False,
83 upper: Python `bool` representing whether output matrix should be upper
89 self._upper = upper
97 return dist_util.fill_triangular(x, upper=self._upper)
100 return dist_util.fill_triangular_inverse(y, upper=self._upper)
  /external/tensorflow/tensorflow/python/autograph/utils/
misc.py 56 return s[0].upper() + s[1:]
  /external/autotest/client/cros/faft/utils/
rootfs_handler.py 35 _KERNEL_MAP[section.upper()])
37 _ROOTFS_MAP[section.upper()])
  /external/capstone/bindings/
const_generator.py 91 if not line.startswith(prefix.upper()):
100 if f[0].startswith(prefix.upper()):
  /external/deqp/scripts/
launchcontrol_build.py 96 print "# %s %s BUILD" % (options.config.upper(), options.buildType.upper())
  /external/icu/icu4c/source/samples/case/
case.cpp 57 UnicodeString upper(uppercase);
72 string = upper;
79 string.toUpper(Locale("tr", "TR")); /* Turkish upper case map string =

Completed in 3977 milliseconds

1 2 34 5 6 7 8 91011>>