Home
last modified time | relevance | path

Searched refs:suffix (Results 826 - 850 of 1170) sorted by relevance

1...<<31323334353637383940>>...47

/third_party/backends/backend/
H A Ddll.c364 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 Dopenldap.c953 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 DRoundTripTest.java256 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 DRoundTripTest.java241 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 Dicuexportdata.cpp1341 const char* suffix = "\n]\n";
1347 exceptionsLength, indent, suffix);
1354 unfoldLength, indent, suffix);
/third_party/icu/icu4c/source/tools/icuexportdata/
H A Dicuexportdata.cpp1177 const char* suffix = "\n]\n";
1183 exceptionsLength, indent, suffix);
1190 unfoldLength, indent, suffix);
/third_party/node/deps/openssl/openssl/crypto/x509/
H A Dv3_utl.c589 * 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 De_loader_attic.c132 * 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 Dv3_utl.c589 * 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 De_loader_attic.c132 * 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/python/Lib/test/
H A Dtest_posixpath.py45 for suffix in ["", "1", "2"]:
46 os_helper.unlink(os_helper.TESTFN + suffix)
47 safe_rmdir(os_helper.TESTFN + suffix)
/third_party/skia/third_party/externals/tint/samples/
H A Dmain.cc160 /// @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 Dlib.c479 // 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 Dcnumtst.c183 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 Dconnection.c76 #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 Dcore.c961 #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 Dcore.c1193 #define DEFINE_TSAN_ATOMIC_RMW(op, bits, suffix) \
1203 return __atomic_##op##suffix(ptr, v, memorder); \
/kernel/linux/linux-6.6/net/rds/
H A Dconnection.c76 #define rds_conn_info_set(var, test, suffix) do { \
78 var |= RDS_INFO_CONNECTION_FLAG_##suffix; \
/third_party/elfutils/libcpu/
H A Di386_disasm.c842 switch (instrtab[cnt].suffix) in i386_disasm()
919 printf("unknown suffix %d\n", instrtab[cnt].suffix); in i386_disasm()
/third_party/ffmpeg/libswscale/ppc/
H A Dyuv2rgb_altivec.c841 #define YUV2PACKEDX_WRAPPER(suffix, pixfmt) \
842 void ff_yuv2 ## suffix ## _X_altivec(SwsContext *c, \
/third_party/python/Lib/
H A Dnntplib.py190 name, _, suffix = line[1:].partition(':')
194 name, _, suffix = line.partition(':')
197 # Should we do something with the suffix?
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/mesh_shader/
H A DvktMeshShaderApiTestsEXT.cpp768 const char* suffix; in createMeshShaderApiTestsEXT() member
826 const auto testName = std::string(taskCase.name) + cmdBufferCase.suffix; in createMeshShaderApiTestsEXT()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_tracing/
H A DvktRayTracingBuildLargeTests.cpp593 const std::string suffix = threads[threadsNdx] == std::numeric_limits<deUint32>::max() ? "max" : de::toString(threads[threadsNdx]); in createBuildLargeShaderSetTests() local
594 const std::string buildTypeGroupName = std::string(buildTypes[buildNdx].buildTypeName) + '_' + suffix; in createBuildLargeShaderSetTests()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/mesh_shader/
H A DvktMeshShaderApiTestsEXT.cpp768 const char* suffix; in createMeshShaderApiTestsEXT() member
826 const auto testName = std::string(taskCase.name) + cmdBufferCase.suffix; in createMeshShaderApiTestsEXT()
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
H A DVertexFormatTests.cpp319 std::string suffix = componentCount == 1 ? "" : "[" + std::to_string(component) + "]"; in MakeTestPipeline() local
324 vs << " " << testVal << " = input.test" << suffix << ";\n"; in MakeTestPipeline() local

Completed in 43 milliseconds

1...<<31323334353637383940>>...47