/third_party/skia/src/sksl/ |
H A D | SkSLDSLParser.h | 253 dsl::DSLExpression suffix(dsl::DSLExpression base);
|
/third_party/python/Lib/test/ |
H A D | test_dbm.py | 209 suffix = mod.__name__[4:] variable 210 testname = f'TestCase_{suffix}'
|
H A D | test_tabnanny.py | 72 mode='w', dir=self.dir, suffix=".py", delete=False
|
H A D | test_shelve.py | 211 suffix = dbm_mod.__name__[4:] 212 name = f'TestProto{proto}File_{suffix}Shelve'
|
H A D | test_posixpath.py | 45 for suffix in ["", "1", "2"]: 46 os_helper.unlink(os_helper.TESTFN + suffix) 47 safe_rmdir(os_helper.TESTFN + suffix)
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir.h | 2510 #define NIR_DEFINE_SRC_AS_CONST(type, suffix) \ 2512 nir_src_comp_as_##suffix(nir_src src, unsigned comp) \ 2518 return nir_const_value_as_##suffix(load->value[comp], \ 2523 nir_src_as_##suffix(nir_src src) \ 2526 return nir_src_comp_as_##suffix(src, 0); \ 2556 #define NIR_DEFINE_SCALAR_AS_CONST(type, suffix) \ 2558 nir_ssa_scalar_as_##suffix(nir_ssa_scalar s) \ 2560 return nir_const_value_as_##suffix( \
|
/third_party/typescript/tests/baselines/reference/ |
H A D | parserharness.js | 1566 var suffix = this.content.substring(limChar); 1567 this.content = prefix + middle + suffix; 1778 var suffix = result.substring(edit.limChar); 1779 result = prefix + middle + suffix; 3437 var suffix = this.content.substring(limChar);
3438 this.content = prefix + middle + suffix;
3613 var suffix = result.substring(edit.limChar);
3614 result = prefix + middle + suffix;
|
/third_party/vk-gl-cts/modules/egl/ |
H A D | teglImageFormatTests.cpp | 1774 void addCreateTextureCubemapActions (const string& suffix, GLenum internalFormat, GLenum format, GLenum type); 1810 void ImageTests::addCreateTextureCubemapActions (const string& suffix, GLenum internalFormat, GLenum format, GLenum type) 1812 addCreateTexture("cubemap_positive_x" + suffix, EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_X_KHR, internalFormat, format, type); 1813 addCreateTexture("cubemap_positive_y" + suffix, EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Y_KHR, internalFormat, format, type); 1814 addCreateTexture("cubemap_positive_z" + suffix, EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Z_KHR, internalFormat, format, type); 1815 addCreateTexture("cubemap_negative_x" + suffix, EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_X_KHR, internalFormat, format, type); 1816 addCreateTexture("cubemap_negative_y" + suffix, EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_KHR, internalFormat, format, type); 1817 addCreateTexture("cubemap_negative_z" + suffix, EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_KHR, internalFormat, format, type);
|
/kernel/linux/linux-6.6/arch/powerpc/kvm/ |
H A D | book3s.c | 486 * of *inst and suffix in the low 32 bits. This is the same convention 507 * current interrupt is a prefixed instruction, get the suffix. in kvmppc_load_last_inst() 510 u32 suffix; in kvmppc_load_last_inst() local 512 r = kvmppc_ld(vcpu, &pc, sizeof(u32), &suffix, false); in kvmppc_load_last_inst() 515 *inst = ((u64)iw << 32) | suffix; in kvmppc_load_last_inst()
|
/third_party/backends/backend/ |
H A D | dll.c | 364 static int has_suffix(const char *filename, const char *suffix) { in has_suffix() argument 366 size_t len_suffix = strlen(suffix); in has_suffix() 367 return len_suffix <= len_filename && strcmp(filename + len_filename - len_suffix, suffix) == 0; in has_suffix()
|
/third_party/curl/lib/ |
H A D | openldap.c | 953 const char *suffix, size_t slen) in client_write() 967 if(!result && suffix) { in client_write() 968 result = Curl_client_write(data, CLIENTWRITE_BODY, (char *) suffix, slen); in client_write() 950 client_write(struct Curl_easy *data, const char *prefix, size_t plen, const char *value, size_t len, const char *suffix, size_t slen) client_write() argument
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/translit/ |
H A D | RoundTripTest.java | 256 final String suffix = iL.getString() + suffixV; in getRepresentativeBoundaryHangul() 258 String sample = prefixL + iV.getString() + suffix; in getRepresentativeBoundaryHangul() 266 String sample = prefixLV + iT.getString() + suffix; in getRepresentativeBoundaryHangul()
|
/third_party/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/ |
H A D | RoundTripTest.java | 241 final String suffix = iL.getString() + suffixV; in getRepresentativeBoundaryHangul() 243 String sample = prefixL + iV.getString() + suffix; in getRepresentativeBoundaryHangul() 251 String sample = prefixLV + iT.getString() + suffix; in getRepresentativeBoundaryHangul()
|
/third_party/node/deps/icu-small/source/tools/icuexportdata/ |
H A D | icuexportdata.cpp | 1341 const char* suffix = "\n]\n"; 1347 exceptionsLength, indent, suffix); 1354 unfoldLength, indent, suffix);
|
/third_party/icu/icu4c/source/tools/icuexportdata/ |
H A D | icuexportdata.cpp | 1177 const char* suffix = "\n]\n"; 1183 exceptionsLength, indent, suffix); 1190 unfoldLength, indent, suffix);
|
/third_party/node/deps/openssl/openssl/crypto/x509/ |
H A D | v3_utl.c | 589 * pattern is longer, compare just an equal-length suffix with the in skip_prefix() 683 * Compare the prefix and suffix with the subject, and check that the 687 const unsigned char *suffix, size_t suffix_len, in wildcard_match() 703 if (!equal_nocase(wildcard_end, suffix_len, suffix, suffix_len, flags)) in wildcard_match() 709 if (prefix_len == 0 && *suffix == '.') { in wildcard_match() 814 * via a subject sub-domain pattern suffix match. in equal_wildcard() 686 wildcard_match(const unsigned char *prefix, size_t prefix_len, const unsigned char *suffix, size_t suffix_len, const unsigned char *subject, size_t subject_len, unsigned int flags) wildcard_match() argument
|
/third_party/node/deps/openssl/openssl/engines/ |
H A D | e_loader_attic.c | 132 * Check if |str| ends with |suffix| preceded by a space, and if it does, 133 * return the index of that space. If there is no such suffix in |str|, 135 * For |str| == "FOO BAR" and |suffix| == "BAR", the returned value is 3. 137 static int check_suffix(const char *str, const char *suffix) in check_suffix() argument 140 int suffix_len = strlen(suffix) + 1; in check_suffix() 147 || strcmp(p + 1, suffix) != 0) in check_suffix()
|
/third_party/openssl/crypto/x509/ |
H A D | v3_utl.c | 589 * pattern is longer, compare just an equal-length suffix with the in skip_prefix() 683 * Compare the prefix and suffix with the subject, and check that the 687 const unsigned char *suffix, size_t suffix_len, in wildcard_match() 703 if (!equal_nocase(wildcard_end, suffix_len, suffix, suffix_len, flags)) in wildcard_match() 709 if (prefix_len == 0 && *suffix == '.') { in wildcard_match() 814 * via a subject sub-domain pattern suffix match. in equal_wildcard() 686 wildcard_match(const unsigned char *prefix, size_t prefix_len, const unsigned char *suffix, size_t suffix_len, const unsigned char *subject, size_t subject_len, unsigned int flags) wildcard_match() argument
|
/third_party/openssl/engines/ |
H A D | e_loader_attic.c | 132 * Check if |str| ends with |suffix| preceded by a space, and if it does, 133 * return the index of that space. If there is no such suffix in |str|, 135 * For |str| == "FOO BAR" and |suffix| == "BAR", the returned value is 3. 137 static int check_suffix(const char *str, const char *suffix) in check_suffix() argument 140 int suffix_len = strlen(suffix) + 1; in check_suffix() 147 || strcmp(p + 1, suffix) != 0) in check_suffix()
|
/third_party/skia/third_party/externals/tint/samples/ |
H A D | main.cc | 160 /// @param suffix potential suffix string 161 /// @returns true if input ends with the given suffix. 162 bool ends_with(const std::string& input, const std::string& suffix) { in ends_with() argument 164 const auto suffix_len = suffix.size(); in ends_with() 167 (input_len - suffix_len == input.rfind(suffix)); in ends_with() 172 /// @returns the inferred format for the filename suffix
|
/third_party/toybox/lib/ |
H A D | lib.c | 479 // If string ends with suffix return pointer to start of suffix in string, 481 char *strend(char *str, char *suffix) in strend() argument 483 long a = strlen(str), b = strlen(suffix); in strend() 485 if (a>b && !strcmp(str += a-b, suffix)) return str; in strend()
|
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | cnumtst.c | 183 UChar suffix[5]; in TestNumberFormat() local 688 unum_getTextAttribute(cur_def, UNUM_NEGATIVE_SUFFIX, suffix, resultlength, &status); in TestNumberFormat() 693 if(u_strcmp(suffix,temp)!=0) in TestNumberFormat() 694 log_err("Fail:Error in setTextAttribute or getTextAttribute in setting and getting suffix\n"); in TestNumberFormat() 696 log_verbose("Pass: setting and getting suffix works fine\n"); in TestNumberFormat() 735 u_uastrcpy(suffix, "+"); in TestNumberFormat() 736 unum_setTextAttribute(def, UNUM_NEGATIVE_SUFFIX, suffix, u_strlen(suffix) , &status); in TestNumberFormat() 747 if(u_strcmp(suffix, temp)!=0) in TestNumberFormat() 748 log_err("ERROR: get and setTextAttributes with negative suffix faile in TestNumberFormat() [all...] |
/kernel/linux/linux-5.10/net/rds/ |
H A D | connection.c | 76 #define rds_conn_info_set(var, test, suffix) do { \ 78 var |= RDS_INFO_CONNECTION_FLAG_##suffix; \
|
/kernel/linux/linux-5.10/kernel/kcsan/ |
H A D | core.c | 961 #define DEFINE_TSAN_ATOMIC_RMW(op, bits, suffix) \ 970 return __atomic_##op##suffix(ptr, v, memorder); \
|
/kernel/linux/linux-6.6/kernel/kcsan/ |
H A D | core.c | 1193 #define DEFINE_TSAN_ATOMIC_RMW(op, bits, suffix) \ 1203 return __atomic_##op##suffix(ptr, v, memorder); \
|