Home
last modified time | relevance | path

Searched refs:strxfrm (Results 1 - 22 of 22) sorted by relevance

/third_party/musl/libc-test/src/functionalext/supplement/locale/
H A Dstrxfrm.c31 size_t result = strxfrm(desp, str, want + 1); in strxfrm_0100()
33 t_error("%s strxfrm get size is %d is not want %d\n", __func__, result, want); in strxfrm_0100()
36 t_error("%s strxfrm get desp is %s is not want %s\n", __func__, desp, str); in strxfrm_0100()
50 size_t result = strxfrm(desp, str, want); in strxfrm_0200()
52 t_error("%s strxfrm get size is %d is not want %d\n", __func__, result, want); in strxfrm_0200()
55 t_error("%s strxfrm get desp is %s is not want %s\n", __func__, desp, str); in strxfrm_0200()
69 size_t result = strxfrm(desp, str, want); in strxfrm_0300()
71 t_error("%s strxfrm get size is %d is not want %d\n", __func__, result, strlen(str)); in strxfrm_0300()
74 t_error("%s strxfrm get desp is %s is not want %s\n", __func__, desp, str); in strxfrm_0300()
88 size_t result = strxfrm(des in strxfrm_0400()
[all...]
/third_party/python/Lib/test/
H A Dtest_locale.py355 self.assertLess(locale.strxfrm('a'), locale.strxfrm('b'))
357 self.assertRaises(ValueError, locale.strxfrm, 'a\0')
390 self.assertLess(locale.strxfrm('à'), locale.strxfrm('b'))
/third_party/musl/src/locale/
H A Dstrxfrm.c13 size_t strxfrm(char *restrict dest, const char *restrict src, size_t n) in strxfrm() function
/third_party/musl/libc-test/src/api/
H A Dstring.c29 {size_t(*p)(char*restrict,const char*restrict,size_t) = strxfrm;} in f()
/third_party/musl/porting/liteos_m/user/include/
H A Dstring.h41 size_t strxfrm (char *__restrict, const char *__restrict, size_t);
/third_party/musl/porting/linux/user/include/
H A Dstring.h43 size_t strxfrm (char *__restrict, const char *__restrict, size_t);
/third_party/musl/porting/uniproton/kernel/include/
H A Dstring.h41 size_t strxfrm (char *__restrict, const char *__restrict, size_t);
/third_party/musl/include/
H A Dstring.h43 size_t strxfrm (char *__restrict, const char *__restrict, size_t);
/third_party/musl/porting/liteos_m/kernel/include/
H A Dstring.h41 size_t strxfrm (char *__restrict, const char *__restrict, size_t);
/third_party/musl/porting/liteos_a/kernel/include/
H A Dstring.h43 size_t strxfrm (char *__restrict, const char *__restrict, size_t);
/third_party/icu/icu4c/source/test/perf/collperf/
H A Dcollperf.cpp134 strxfrm(posix_key, data[i].posix_data, MAX_KEY_LENGTH); in posix_key_null()
830 s = strxfrm(NULL, posix_data->dataOf(i), 0); in prepareData()
833 t = strxfrm(posix_key->last(), posix_data->dataOf(i), s); in prepareData()
/third_party/icu/icu4c/source/test/perf/collationperf/
H A Dcollperf.cpp23 // Three APIs can be teste: ICU C , Unix strcoll, strxfrm and Windows LCMapString
37 "-unix Run test using Unix strxfrm, strcoll services.\n"
121 UBool opt_unix = false; // Run with UNIX strcoll, strxfrm functions.
419 strxfrm(gFileLines[line].unixSortKey, gFileLines[line].unixName, 5000); in doKeyGen()
1652 t=strxfrm((char *)buf, gFileLines[line].unixName, sizeof(buf)); in main()
1655 t = strxfrm(gFileLines[line].unixSortKey, gFileLines[line].unixName, sizeof(buf)); in main()
/third_party/python/Lib/
H A Dlocale.py28 "setlocale", "resetlocale", "localeconv", "strcoll", "strxfrm",
40 """ strxfrm(string) -> string.
96 if 'strxfrm' not in globals():
97 strxfrm = _strxfrm variable
/third_party/musl/Benchmark/musl/
H A Dlibc_string.cpp469 strxfrm(dstAligned, srcAligned, nbytes); in Bm_function_Strxfrm()
474 // Similar to strxfrm the main difference is its support for localization
/third_party/rust/crates/libc/src/windows/
H A Dmod.rs371 pub fn strxfrm(s: *mut c_char, ct: *const c_char, n: size_t) -> size_t; in strxfrm() functions
/third_party/icu/tools/colprobe/
H A DcolprobeNew.cpp216 return (strxfrm((char *)buffer, compUTF8A, buffCapacity)+1); in UNIXgetSortKey()
/third_party/rust/crates/libc/src/solid/
H A Dmod.rs741 pub fn strxfrm(arg1: *mut c_char, arg2: *const c_char, arg3: size_t) -> size_t; in strxfrm() functions
/third_party/rust/crates/libc/src/
H A Dwasi.rs575 pub fn strxfrm(s: *mut c_char, ct: *const c_char, n: size_t) -> size_t; in strxfrm() functions
/third_party/rust/crates/libc/src/vxworks/
H A Dmod.rs1161 pub fn strxfrm(s: *mut c_char, ct: *const c_char, n: size_t) -> size_t; in strxfrm() functions
/third_party/rust/crates/libc/src/unix/
H A Dmod.rs563 pub fn strxfrm(s: *mut c_char, ct: *const c_char, n: size_t) -> size_t; in strxfrm() functions
/third_party/rust/crates/libc/src/fuchsia/
H A Dmod.rs3444 pub fn strxfrm(s: *mut c_char, ct: *const c_char, n: size_t) -> size_t; in strxfrm() functions
/third_party/rust/crates/bindgen/bindgen-tests/tests/
H A Dstylo.hpp7006 extern size_t strxfrm (char *__restrict __dest,
7249 using ::strxfrm;
[all...]

Completed in 61 milliseconds