/third_party/toybox/toys/pending/ |
H A D | userdel.c | 27 char *filenamesfx = NULL, *sfx = NULL, *line = NULL; in update_groupfiles() local 34 sfx = strchr(filenamesfx, '+'); in update_groupfiles() 37 *sfx = '-'; in update_groupfiles() 41 *sfx = '+'; in update_groupfiles()
|
/third_party/toybox/lib/ |
H A D | password.c | 111 *sfx = NULL, *line = NULL; in update_password() local 119 sfx = strchr(filenamesfx, '+'); in update_password() 127 *sfx = '-'; in update_password() 132 *sfx = '+'; in update_password()
|
/third_party/elfutils/libdwfl/ |
H A D | linux-kernel-modules.c | 345 #define TRY(sfx) \ in check_suffix() 346 if ((namelen ? f->fts_namelen == namelen + sizeof sfx - 1 \ in check_suffix() 347 : f->fts_namelen >= sizeof sfx) \ in check_suffix() 348 && !memcmp (f->fts_name + f->fts_namelen - (sizeof sfx - 1), \ in check_suffix() 349 sfx, sizeof sfx)) \ in check_suffix() 350 return sizeof sfx - 1 in check_suffix()
|
/third_party/lzma/C/Util/SfxSetup/ |
H A D | makefile | 1 PROG = 7zS2.sfx
|
/third_party/libbpf/src/ |
H A D | libbpf_internal.h | 152 static inline bool str_has_sfx(const char *str, const char *sfx) in str_has_sfx() argument 155 size_t sfx_len = strlen(sfx); in str_has_sfx() 159 return strcmp(str + str_len - sfx_len, sfx) == 0; in str_has_sfx()
|
/third_party/icu/icu4c/source/i18n/ |
H A D | collationsets.h | 67 void addSuffix(UChar32 c, const UnicodeString &sfx);
|
H A D | collationsets.cpp | 337 TailoredSet::addSuffix(UChar32 c, const UnicodeString &sfx) { in addSuffix() argument 338 tailored->add(UnicodeString(unreversedPrefix).append(c).append(sfx)); in addSuffix()
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | collationsets.h | 67 void addSuffix(UChar32 c, const UnicodeString &sfx);
|
H A D | collationsets.cpp | 337 TailoredSet::addSuffix(UChar32 c, const UnicodeString &sfx) { in addSuffix() argument 338 tailored->add(UnicodeString(unreversedPrefix).append(c).append(sfx)); in addSuffix()
|
/third_party/node/deps/openssl/openssl/crypto/perlasm/ |
H A D | arm-xlate.pl | 113 my ($r,$sfx,$start,$end) = @_; 115 join(",",map("$r$_$sfx",($start..$end)));
|
/third_party/openssl/crypto/perlasm/ |
H A D | arm-xlate.pl | 130 my ($r,$sfx,$start,$end) = @_; 132 join(",",map("$r$_$sfx",($start..$end)));
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | collationsets.h | 67 void addSuffix(UChar32 c, const UnicodeString &sfx);
|
H A D | collationsets.cpp | 337 TailoredSet::addSuffix(UChar32 c, const UnicodeString &sfx) { in addSuffix() argument 338 tailored->add(UnicodeString(unreversedPrefix).append(c).append(sfx)); in addSuffix()
|
/third_party/lzma/CPP/7zip/Bundles/SFXCon/ |
H A D | makefile | 1 PROG = 7zCon.sfx
|
/third_party/lzma/CPP/7zip/Bundles/SFXSetup/ |
H A D | makefile | 1 PROG = 7zS.sfx
|
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
H A D | TailoredSet.java | 370 private void addSuffix(int c, CharSequence sfx) { in addSuffix() argument 371 tailored.add(new StringBuilder(unreversedPrefix).appendCodePoint(c).append(sfx)); in addSuffix()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/coll/ |
H A D | TailoredSet.java | 372 private void addSuffix(int c, CharSequence sfx) { in addSuffix() argument 373 tailored.add(new StringBuilder(unreversedPrefix).appendCodePoint(c).append(sfx)); in addSuffix()
|
/third_party/node/deps/openssl/openssl/crypto/ec/asm/ |
H A D | ecp_nistz256-x86_64.pl | 3223 my ($src0,$sfx,$bias); 3228 $sfx = ""; 3246 $sfx = "x"; 3462 .size ecp_nistz256_point_double$sfx,.-ecp_nistz256_point_double$sfx 3469 my ($src0,$sfx,$bias); 3479 $sfx = ""; 3497 $sfx = "x"; 3843 .size ecp_nistz256_point_add$sfx,.-ecp_nistz256_point_add$sfx [all...] |
/third_party/openssl/crypto/ec/asm/ |
H A D | ecp_nistz256-x86_64.pl | 3223 my ($src0,$sfx,$bias); 3228 $sfx = ""; 3246 $sfx = "x"; 3462 .size ecp_nistz256_point_double$sfx,.-ecp_nistz256_point_double$sfx 3469 my ($src0,$sfx,$bias); 3479 $sfx = ""; 3497 $sfx = "x"; 3843 .size ecp_nistz256_point_add$sfx,.-ecp_nistz256_point_add$sfx [all...] |
/third_party/lzma/CPP/7zip/Bundles/SFXWin/ |
H A D | makefile | 1 PROG = 7z.sfx
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | core-util.h | 136 bool pa_endswith(const char *s, const char *sfx) PA_GCC_PURE;
|
H A D | core-util.c | 2168 /* Returns nonzero when *s ends with *sfx */ 2169 bool pa_endswith(const char *s, const char *sfx) { in pa_endswith() argument 2173 pa_assert(sfx); in pa_endswith() 2176 l2 = strlen(sfx); in pa_endswith() 2178 return l1 >= l2 && pa_streq(s + l1 - l2, sfx); in pa_endswith()
|
/third_party/skia/infra/bots/gen_tasks_logic/ |
H A D | dm_flags.go | 104 suffix := func(slice []string, sfx string) []string { 107 rv = append(rv, e+sfx)
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
H A D | glcShaderRenderCase.cpp | 775 float sfx = (float)ix + 0.5f; in computeVertexReference() local 777 float fx1 = deFloatClamp((sfx - sx0) * oosx, 0.0f, 1.0f); in computeVertexReference()
|
/third_party/vk-gl-cts/modules/glshared/ |
H A D | glsShaderRenderCase.cpp | 703 float sfx = (float)ix + 0.5f; in computeVertexReference() local 705 float fx1 = deFloatClamp((sfx - sx0) * oosx, 0.0f, 1.0f); in computeVertexReference()
|