Home
last modified time | relevance | path

Searched refs:upper (Results 276 - 300 of 489) sorted by relevance

1...<<11121314151617181920

/third_party/mksh/
H A DBuild.sh269 upper() { function
285 fu=`upper $f`
315 eval ft=\$HAVE_`upper $2`
382 fu=`upper $f`
431 eval fv=\$HAVE_CAN_`upper $vn`
2029 uwhat=`upper $what`
/third_party/vk-gl-cts/external/vulkancts/scripts/
H A Dgen_framework_sc.py143 name = name.upper()
683 extNameUpper = extensionName.upper()
908 prefix += enum.name[i].upper()
2085 nameSplitUp = map(str.upper, nameSplit)
2268 structName = re.sub("[_0-9][a-z]", lambda match: match.group(0).upper(), sType.capitalize()).replace('_', '')
2332 structName = re.sub("[_0-9][a-z]", lambda match: match.group(0).upper(), sType.capitalize()).replace('_', '')
2816 metaCondition = metaCondition + ' || defined(CTS_USES_' + v[1][0].upper() + ')'
2862 metaCondition = metaCondition + ' || defined(CTS_USES_' + v[3][0].upper() + ')'
/third_party/PyYAML/
H A Dsetup.py145 with_ext = getattr(self, ext.attr_name) or os.environ.get('PYYAML_FORCE_{0}'.format(ext.feature_name.upper()))
/third_party/lame/libmp3lame/
H A Dutil.h541 void (*init_xrpow_core) (gr_info * const cod_info, FLOAT xrpow[576], int upper,
/third_party/mesa3d/src/compiler/isaspec/
H A Dencode.py213 return bitset.encode.case_prefix + name.upper().replace('.', '_').replace('-', '_').replace('#', '')
/third_party/node/deps/v8/tools/cppgc/
H A Dgen_cmake.py456 return var.replace('v8_', '').upper()
/third_party/node/deps/v8/tools/
H A Dgen-postmortem-metadata.py540 cctype += part[0].upper() + part[1:].lower();
/third_party/ninja/misc/
H A Dwrite_fake_manifests.py86 '-DENABLE_' + self._unique_string(self.seen_defines).upper()
/third_party/mesa3d/src/intel/genxml/
H A Dgen_bits_header.py318 pargs.cpp_guard = os.path.basename(pargs.output).upper().replace('.', '_')
/third_party/python/Lib/test/test_sqlite3/
H A Dtest_hooks.py51 def upper(self): member in CollationTests.test_create_collation_bad_upper.BadUpperStr
/third_party/python/Include/internal/
H A Dpycore_ast_state.h247 PyObject *upper; member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DFileCollector.cpp25 // Change path to all upper case and ask for its real path, if the latter in isCaseSensitivePath()
29 UpperDest = Path.upper(); in isCaseSensitivePath()
/third_party/python/Lib/test/test_importlib/
H A Dtest_main.py116 assert version(pkg_name.upper()) == '1.0'
/third_party/python/Lib/test/
H A Dtest_type_comments.py346 self.assertEqual(arg.type_comment, arg.arg.upper())
/third_party/python/Lib/wsgiref/
H A Dhandlers.py357 return self.environ['SERVER_PROTOCOL'].upper() != 'HTTP/0.9'
/third_party/skia/infra/bots/recipe_modules/build/
H A Ddefault.py67 '-DSWIFTSHADER_{}=ON'.format(short.upper()),
/third_party/mesa3d/src/panfrost/midgard/
H A Dmidgard_schedule.c397 bool upper) in mir_adjust_constant()
409 if (type_size != 16 && upper) in mir_adjust_constant()
412 /* For 16-bit, we need to stay on either upper or lower halves to avoid in mir_adjust_constant()
414 unsigned start = upper ? 8 : 0; in mir_adjust_constant()
496 /* Next, try upper half */ in mir_adjust_constants()
393 mir_adjust_constant(midgard_instruction *ins, unsigned src, unsigned *bundle_constant_mask, unsigned *comp_mapping, uint8_t *bundle_constants, bool upper) mir_adjust_constant() argument
/third_party/skia/third_party/externals/spirv-tools/source/util/
H A Dhex_float.h722 const char* upper = "ABCDEF"; in get_nibble_from_character() local
728 } else if ((p = strchr(upper, character))) { in get_nibble_from_character()
729 return static_cast<uint8_t>(p - upper + 0xa); in get_nibble_from_character()
/third_party/skia/third_party/externals/angle2/src/tests/
H A Dcapture_replay_tests.py813 logger.setLevel(level=args.log.upper())
1120 logging.basicConfig(level=args.log.upper(), filename=args.result_file)
1122 logging.basicConfig(level=args.log.upper())
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/util/
H A Dhex_float.h722 const char* upper = "ABCDEF"; in get_nibble_from_character() local
728 } else if ((p = strchr(upper, character))) { in get_nibble_from_character()
729 return static_cast<uint8_t>(p - upper + 0xa); in get_nibble_from_character()
/third_party/spirv-tools/source/util/
H A Dhex_float.h723 const char* upper = "ABCDEF"; in get_nibble_from_character() local
729 } else if ((p = strchr(upper, character))) { in get_nibble_from_character()
730 return static_cast<uint8_t>(p - upper + 0xa); in get_nibble_from_character()
/third_party/node/deps/v8/src/execution/loong64/
H A Dsimulator-loong64.cc912 // Set ONLY lower 32-bits, leaving upper bits untouched. in set_fpu_register_word()
921 // Set ONLY upper 32-bits, leaving lower bits untouched. in set_fpu_register_hi_word()
2960 set_fpu_register(fd_reg(), kFPUInvalidResult); // Trash upper 32 bits. in DecodeTypeOp10()
3961 set_fpu_register(fd_reg(), kFPUInvalidResult); // Trash upper 32 bits.
5013 float upper = std::ceil(fj); in DecodeTypeOp22() local
5018 if (upper - fj < fj - lower) { in DecodeTypeOp22()
5019 result = upper; in DecodeTypeOp22()
5020 } else if (upper - fj > fj - lower) { in DecodeTypeOp22()
5023 temp_result = upper / 2; in DecodeTypeOp22()
5026 result = upper; in DecodeTypeOp22()
5055 double upper = std::ceil(fj); DecodeTypeOp22() local
[all...]
/third_party/node/deps/v8/src/execution/mips64/
H A Dsimulator-mips64.cc817 FPUregisters_[2 * i + 1] = 0; // upper part for MSA ASE in Simulator()
884 // Set ONLY lower 32-bits, leaving upper bits untouched. in set_fpu_register_word()
896 // Set ONLY upper 32-bits, leaving lower bits untouched. in set_fpu_register_hi_word()
2703 float upper = std::ceil(fs); in DecodeTypeRegisterSRsType() local
2707 if (upper - fs < fs - lower) { in DecodeTypeRegisterSRsType()
2708 result = upper; in DecodeTypeRegisterSRsType()
2709 } else if (upper - fs > fs - lower) { in DecodeTypeRegisterSRsType()
2712 temp_result = upper / 2; in DecodeTypeRegisterSRsType()
2715 result = upper; in DecodeTypeRegisterSRsType()
2722 result = (fs > 0 ? lower : upper); in DecodeTypeRegisterSRsType()
3078 double upper = std::ceil(fs); DecodeTypeRegisterDRsType() local
[all...]
/third_party/node/deps/v8/src/execution/mips/
H A Dsimulator-mips.cc874 FPUregisters_[2 * i + 1] = 0; // upper part for MSA ASE in Simulator()
940 // Set ONLY lower 32-bits, leaving upper bits untouched. in set_fpu_register_word()
948 // Set ONLY upper 32-bits, leaving lower bits untouched. in set_fpu_register_hi_word()
2695 double upper = std::ceil(fs); in DecodeTypeRegisterDRsType() local
2699 if (upper - fs < fs - lower) { in DecodeTypeRegisterDRsType()
2700 result = upper; in DecodeTypeRegisterDRsType()
2701 } else if (upper - fs > fs - lower) { in DecodeTypeRegisterDRsType()
2704 temp_result = upper / 2; in DecodeTypeRegisterDRsType()
2707 result = upper; in DecodeTypeRegisterDRsType()
2714 result = (fs > 0 ? lower : upper); in DecodeTypeRegisterDRsType()
3183 float upper = std::ceil(fs); DecodeTypeRegisterSRsType() local
[all...]
/third_party/openssl/crypto/bn/asm/
H A Dbn-c64xplus.asm202 [!A2] SHRU A3,31,A1 ; upper bit
211 SHRU A3,31,A1 ; upper bit

Completed in 44 milliseconds

1...<<11121314151617181920