/third_party/mesa3d/src/util/ |
H A D | u_debug.h | 413 #define DEBUG_GET_ONCE_OPTION(suffix, name, dfault) \ 415 debug_get_option_ ## suffix (void) \ 442 #define DEBUG_GET_ONCE_FILE_OPTION(suffix, name, dfault, mode) \ 444 debug_get_option_ ## suffix (void) \
|
/third_party/mesa3d/src/virtio/vulkan/ |
H A D | vn_common.h | 72 #define VN_TRACE_SCOPE_VAR_CONCAT(name, suffix) name##suffix 73 #define VN_TRACE_SCOPE_VAR(suffix) \ 74 VN_TRACE_SCOPE_VAR_CONCAT(_vn_trace_scope_, suffix)
|
/third_party/python/Lib/test/ |
H A D | test__osx_support.py | 142 suffix = (':' + self.env['PATH']) if self.env['PATH'] else '' 143 self.env['PATH'] = os.path.abspath(self.temp_path_dir) + suffix 220 suffix = (':' + self.env['PATH']) if self.env['PATH'] else '' 221 self.env['PATH'] = os.path.abspath(self.temp_path_dir) + suffix
|
H A D | test_sysconfig.py | 377 # Replace "/lib64/python3.11/site-packages" suffix 380 suffix = f'python{py_version_short}/site-packages' 381 expected = expected.replace(f'/{sys.platlibdir}/{suffix}', 382 f'/lib/{suffix}') 490 suffix = sysconfig.get_config_var('EXT_SUFFIX') 492 self.assertTrue('linux' in suffix, suffix) 498 self.assertTrue(suffix.endswith(expected_suffixes), 499 f'unexpected suffix {suffix! [all...] |
/third_party/python/Lib/lib2to3/tests/ |
H A D | test_main.py | 76 """2to3 a single directory with a new output dir and suffix.""" 80 suffix = "TEST" 82 ["-n", "--add-suffix", suffix, "--write-unchanged-files", 92 self.assertEqual(set(name+suffix for name in self.setup_files), 97 os.path.join(self.py3_dest_dir, name+suffix)), stderr)
|
/third_party/skia/bench/ |
H A D | ColorFilterBench.cpp | 44 static const char* suffix[] = { "nofilter", "colorfilter", "imagefilter" }; in FilteredRectBench() local 45 fName.printf("filteredrect_%s", suffix[t]); in FilteredRectBench() 92 explicit ColorFilterBench(const char* suffix, Factory f) in ColorFilterBench() argument 94 , fName(SkStringPrintf("colorfilter_%s", suffix)) {} in ColorFilterBench()
|
H A D | PathOpsBench.cpp | 22 PathOpsBench(const char suffix[], SkPathOp op) : fOp(op) { in PathOpsBench() argument 23 fName.printf("pathops_%s", suffix); in PathOpsBench() 56 PathOpsSimplifyBench(const char suffix[], const SkPath& path) : fPath(path) { in PathOpsSimplifyBench() argument 57 fName.printf("pathops_simplify_%s", suffix); in PathOpsSimplifyBench()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | ResourcesHLSL.cpp | 338 TString suffix = TextureGroupSuffix(textureGroup); in outputHLSLSamplerUniformGroup() local 342 out << "static const uint textureIndexOffset" << suffix << " = " in outputHLSLSamplerUniformGroup() 344 out << "static const uint samplerIndexOffset" << suffix << " = " in outputHLSLSamplerUniformGroup() 347 out << "uniform " << TextureString(textureGroup) << " textures" << suffix << "[" in outputHLSLSamplerUniformGroup() 350 out << "uniform " << SamplerString(textureGroup) << " samplers" << suffix << "[" in outputHLSLSamplerUniformGroup() 400 TString suffix = TextureGroupSuffix(textureGroup); in outputHLSLReadonlyImageUniformGroup() local 401 out << "static const uint readonlyImageIndexOffset" << suffix << " = " in outputHLSLReadonlyImageUniformGroup() 403 out << "uniform " << TextureString(textureGroup) << " readonlyImages" << suffix << "[" in outputHLSLReadonlyImageUniformGroup() 422 TString suffix = RWTextureGroupSuffix(textureGroup); in outputHLSLImageUniformGroup() local 423 out << "static const uint imageIndexOffset" << suffix << " in outputHLSLImageUniformGroup() [all...] |
/third_party/protobuf/js/compatibility_tests/v3.1.0/ |
H A D | maps_test.js | 79 * @param {!string} suffix 81 function makeTests(msgInfo, submessageCtor, suffix) { 164 it('testMapStringStringField' + suffix, function() { 222 it('testAllMapTypes' + suffix, function() { 233 it('testBinaryFormat' + suffix, function() { 268 it('testLazyMapSync' + suffix, function() {
|
/third_party/python/Lib/ |
H A D | pathlib.py | 631 def suffix(self): member in PurePath 633 The final component's last suffix, if any. 655 return ['.' + suffix for suffix in name.split('.')[1:]] 659 """The final path component, minus its last suffix.""" 680 return self.with_name(stem + self.suffix) 682 def with_suffix(self, suffix): 683 """Return a new path with the file suffix changed. If the path 684 has no suffix, add given suffix [all...] |
/third_party/mesa3d/src/mesa/main/ |
H A D | texparam.c | 260 const char *suffix = dsa ? "ture" : ""; in set_tex_parameteri() local 271 "glTex%sParameter(immutable texture)", suffix); in set_tex_parameteri() 408 "glTex%sParameter(param=%d)", suffix, params[0]); in set_tex_parameteri() 428 "glTex%sParameter(param=%d)", suffix, in set_tex_parameteri() 563 "glTex%sParameter(swizzle 0x%x)", suffix, params[0]); in set_tex_parameteri() 589 suffix, params[comp]); in set_tex_parameteri() 691 "glTex%sParameter(target=%d)", suffix, texObj->Target); in set_tex_parameteri() 707 suffix, _mesa_enum_to_string(pname)); in set_tex_parameteri() 712 suffix, _mesa_enum_to_string(params[0])); in set_tex_parameteri() 721 suffix, _mesa_enum_to_strin in set_tex_parameteri() 740 const char *suffix = dsa ? "ture" : ""; set_tex_parameterf() local 1712 const char *suffix = dsa ? "ture" : ""; get_tex_level_parameter_image() local 1916 const char *suffix = dsa ? "ture" : ""; get_tex_level_parameter_buffer() local 2051 const char *suffix = dsa ? "ture" : ""; valid_tex_level_parameteriv_target() local 2073 const char *suffix = dsa ? "ture" : ""; get_tex_level_parameteriv() local [all...] |
/test/xts/acts/appbuild/cmake_test/ohos_app_demo_test/scripts/ |
H A D | ohos_app_demo_check.py | 32 def endswith_check(names: [], suffix: str): 33 return any(name.endswith(suffix) for name in names)
|
/third_party/icu/icu4c/source/i18n/ |
H A D | esctrn.h | 26 * Escape forms have a prefix and suffix, either of which may be 58 UnicodeString suffix; member in EscapeTransliterator 82 * prefix, suffix, radix, and minDigits of this object are used 100 const UnicodeString& prefix, const UnicodeString& suffix,
|
/third_party/node/test/parallel/ |
H A D | test-ttywrap-invalid-fd.js | 30 const suffix = common.isWindows ? 32 const message = `TTY initialization failed: uv_tty_init returned ${suffix}`;
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | esctrn.h | 26 * Escape forms have a prefix and suffix, either of which may be 58 UnicodeString suffix; member in EscapeTransliterator 82 * prefix, suffix, radix, and minDigits of this object are used 100 const UnicodeString& prefix, const UnicodeString& suffix,
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | check-libstdc++.py | 23 for suffix in ['so', 'dylib']: 24 so = os.path.join (libs, 'lib%s.%s' % (soname, suffix))
|
/third_party/ntfs-3g/ntfsprogs/ |
H A D | utils.c | 322 * @scale: Whether or not to allow a suffix to scale the value 325 * them. Any number without a suffix is assumed to be in bytes. 334 * Only the first character of the suffix is read. 344 char *suffix = NULL; in utils_parse_size() local 353 result = strtoll(value, &suffix, 0); in utils_parse_size() 359 if (!suffix) { in utils_parse_size() 360 ntfs_log_error("Internal error, strtoll didn't return a suffix.\n"); in utils_parse_size() 365 switch (suffix[0]) { in utils_parse_size() 377 ntfs_log_error("Invalid size suffix '%s'. Use T, G, M, or K.\n", suffix); in utils_parse_size() [all...] |
/third_party/python/Lib/venv/ |
H A D | __init__.py | 295 for suffix in ('python', 'python3', f'python3.{sys.version_info[1]}'): 296 path = os.path.join(binpath, suffix) 323 for suffix in suffixes: 324 src = os.path.join(dirname, suffix) 326 copier(src, os.path.join(binpath, suffix)) 430 suffix = root[plen:].split(os.sep)[2:] 431 if not suffix: 434 dstdir = os.path.join(binpath, *suffix)
|
/third_party/icu/icu4c/source/common/ |
H A D | udata.cpp | 415 const char *item, const char *suffix, UBool doCheckLastFour, 424 StringPiece suffix; /* item suffix (can be null) */ member in UDataPathIterator 433 * to match, checks last 4 chars of suffix with 442 * @param inSuffix Optional item suffix, if not-null (ex. ".dat") then 'path' can contain 'item' explicitly. 487 suffix = inSuffix; in UDataPathIterator() 489 suffix = ""; in UDataPathIterator() 501 suffix.data(), in UDataPathIterator() 573 uprv_strncmp(pathBuffer.data() +(pathLen-4), suffix.data(), 4)==0 && /* suffix matche in next() [all...] |
/third_party/node/deps/icu-small/source/common/ |
H A D | udata.cpp | 415 const char *item, const char *suffix, UBool doCheckLastFour, 424 StringPiece suffix; /* item suffix (can be null) */ member in UDataPathIterator 433 * to match, checks last 4 chars of suffix with 442 * @param inSuffix Optional item suffix, if not-null (ex. ".dat") then 'path' can contain 'item' explicitly. 487 suffix = inSuffix; in UDataPathIterator() 489 suffix = ""; in UDataPathIterator() 501 suffix.data(), in UDataPathIterator() 573 uprv_strncmp(pathBuffer.data() +(pathLen-4), suffix.data(), 4)==0 && /* suffix matche in next() [all...] |
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | udata.cpp | 415 const char *item, const char *suffix, UBool doCheckLastFour, 424 StringPiece suffix; /* item suffix (can be null) */ member in UDataPathIterator 433 * to match, checks last 4 chars of suffix with 442 * @param inSuffix Optional item suffix, if not-null (ex. ".dat") then 'path' can contain 'item' explicitly. 487 suffix = inSuffix; in UDataPathIterator() 489 suffix = ""; in UDataPathIterator() 501 suffix.data(), in UDataPathIterator() 573 uprv_strncmp(pathBuffer.data() +(pathLen-4), suffix.data(), 4)==0 && /* suffix matche in next() [all...] |
/third_party/mesa3d/src/gallium/frontends/clover/llvm/ |
H A D | util.hpp | 81 log(const std::string &suffix, const std::string &s) { in log() argument 87 std::ofstream(path + suffix, std::ios::app) << s; in log()
|
/third_party/lz4/programs/ |
H A D | lz4io.h | 69 /* if suffix == stdoutmark, writes to stdout */ 70 int LZ4IO_compressMultipleFilenames(const char** inFileNamesTable, int ifntSize, const char* suffix, int compressionlevel, const LZ4IO_prefs_t* prefs); 71 int LZ4IO_decompressMultipleFilenames(const char** inFileNamesTable, int ifntSize, const char* suffix, const LZ4IO_prefs_t* prefs);
|
/third_party/libabigail/src/ |
H A D | abg-config.cc | 79 /// @param suf the version suffix of the library. 84 std::string& suffix) in abigail_get_library_version() 89 suffix = ABIGAIL_VERSION_SUFFIX; in abigail_get_library_version() 81 abigail_get_library_version(std::string& major, std::string& minor, std::string& revision, std::string& suffix) abigail_get_library_version() argument
|
/third_party/python/Include/ |
H A D | pyhash.h | 61 Py_hash_t suffix; member 71 Py_hash_t suffix; member
|