/third_party/skia/src/gpu/glsl/ |
H A D | GrGLSLProgramBuilder.cpp | 440 SkString suffix; in getMangleSuffix() local 441 suffix.printf("_S%d", fStageIndex); in getMangleSuffix() 443 suffix.appendf("_c%d", c); in getMangleSuffix() 445 return suffix; in getMangleSuffix() 456 SkString suffix = this->getMangleSuffix(); in nameVariable() local 459 out.appendf("%s%s", underscoreSplitter, suffix.c_str()); in nameVariable()
|
/third_party/skia/third_party/externals/libgifcodec/ |
H A D | SkGifImageReader.cpp | 289 std::copy_n(suffix[code].begin(), SK_DICTIONARY_WORD_SIZE, p); in doLZW() 293 const int firstchar = static_cast<unsigned char>(code); // (strictly `suffix[code][0]`) in doLZW() 307 // If the suffix buffer is full (l == 0) then oldcode becomes the new in doLZW() 311 suffix[avail] = suffix[oldcode]; in doLZW() 312 suffix[avail][l] = firstchar; in doLZW() 950 // Clearing the whole suffix table lets us be more tolerant of bad data. in prepareToDecode() 952 std::fill_n(suffix[i].begin(), SK_DICTIONARY_WORD_SIZE, 0); in prepareToDecode() 953 suffix[i][0] = i; in prepareToDecode()
|
/third_party/skia/tools/gpu/gl/interface/ |
H A D | gen_interface.go | 63 // SuffixOverride allows the extension suffix to be manually specified instead 69 SuffixOverride *string `json:"suffix"` 204 suffix := deriveSuffix(req.Extension) 208 if suffix == "ARB" { 209 suffix = "" 212 suffix = *req.SuffixOverride 214 if req.Extension == CORE_FEATURE || suffix == "" { 217 block = addLine(block, fmt.Sprintf("GET_PROC_SUFFIX(%s, %s);", function, suffix)) 251 // driveSuffix returns the suffix of the function associated with the given
|
/third_party/protobuf/js/ |
H A D | maps_test.js | 97 * @param {string} suffix 99 function makeTests(msgInfo, submessageCtor, suffix) { 182 it('testMapStringStringField' + suffix, function() { 240 it('testAllMapTypes' + suffix, function() { 251 it('testBinaryFormat' + suffix, function() { 383 it('testLazyMapSync' + suffix, function() { 409 it('testIteratorIterables' + suffix, function() {
|
/third_party/libuv/docs/src/ |
H A D | conf.py | 33 suffix = m.group(1) 34 return '%d.%d.%d%s' % (major, minor, patch, '-%s' % suffix if not is_release else '') 56 # The suffix of source filenames. 195 # This is the file name suffix for HTML files (e.g. ".xhtml").
|
/third_party/node/deps/v8/tools/testrunner/testproc/ |
H A D | variant.py | 16 For each test it keeps generator that returns variant, flags and id suffix. 53 for variant, flags, suffix in variants_gen: 54 subtest = self._create_subtest(test, '%s-%s' % (variant, suffix), 63 """Generator producing (variant, flags, procid suffix) tuples."""
|
/third_party/node/tools/gyp/tools/ |
H A D | graphviz.py | 18 target, _, suffix = target.partition("#") 20 return filename, target, suffix
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | indexExt.py | 17 suffix = ' </b> </li>' 23 print(prefix, desc, suffix)
|
/third_party/skia/resources/sksl/ |
H A D | update_fuzzer.py | 26 with tempfile.NamedTemporaryFile(suffix='primary.zip', delete=False, mode='w') as pathToPrimaryZip: 27 with tempfile.NamedTemporaryFile(suffix='pad.zip', delete=False, mode='w') as pathToPaddedZip:
|
/third_party/skia/third_party/externals/swiftshader/tests/ |
H A D | presubmit.sh | 57 for suffix in "cpp" "hpp" "go" "h"; do 60 find ${SRC_DIR} -type f -name "*.${suffix}" | xargs grep -L "Copyright .* The SwiftShader Authors\|Microsoft Visual C++ generated\|GNU Bison"
|
/third_party/skia/gm/ |
H A D | imagesource2.cpp | 29 ImageSourceGM(const char* suffix, const SkSamplingOptions& sampling) in ImageSourceGM() argument 30 : fSuffix(suffix), fSampling(sampling) { in ImageSourceGM()
|
/kernel/linux/linux-5.10/drivers/net/ppp/ |
H A D | bsd_comp.c | 121 unsigned char suffix; /* last character of new code */ member 125 unsigned char suffix; /* last character of new code */ 206 #define BSD_HASH(prefix,suffix,hshift) ((((unsigned long)(suffix))<<(hshift)) \ 208 #define BSD_KEY(prefix,suffix) ((((unsigned long)(suffix)) << 16) \ 670 continue; /* found (prefix,suffix) */ in bsd_compress() 691 ent = dictp->codem1 + 1; /* finally found (prefix,suffix) */ in bsd_compress() 1025 *--p = dictp->f.hs.suffix; in bsd_decompress()
|
/kernel/linux/linux-6.6/drivers/net/ppp/ |
H A D | bsd_comp.c | 121 unsigned char suffix; /* last character of new code */ member 125 unsigned char suffix; /* last character of new code */ 206 #define BSD_HASH(prefix,suffix,hshift) ((((unsigned long)(suffix))<<(hshift)) \ 208 #define BSD_KEY(prefix,suffix) ((((unsigned long)(suffix)) << 16) \ 670 continue; /* found (prefix,suffix) */ in bsd_compress() 691 ent = dictp->codem1 + 1; /* finally found (prefix,suffix) */ in bsd_compress() 1025 *--p = dictp->f.hs.suffix; in bsd_decompress()
|
/third_party/gn/src/base/files/ |
H A D | file_path.cc | 397 FilePath FilePath::InsertBeforeExtension(StringViewType suffix) const { in InsertBeforeExtension() 398 if (suffix.empty()) in InsertBeforeExtension() 406 ret.append(suffix); in InsertBeforeExtension() 411 FilePath FilePath::InsertBeforeExtensionASCII(std::string_view suffix) const { in InsertBeforeExtensionASCII() 412 DCHECK(IsStringASCII(suffix)); in InsertBeforeExtensionASCII() 414 return InsertBeforeExtension(ASCIIToUTF16(suffix)); in InsertBeforeExtensionASCII() 416 return InsertBeforeExtension(suffix); in InsertBeforeExtensionASCII()
|
/third_party/python/Objects/clinic/ |
H A D | bytesobject.c.h | 572 "removesuffix($self, suffix, /)\n" 575 "Return a bytes object with the given suffix string removed if present.\n" 577 "If the bytes ends with the suffix string and that suffix is not empty,\n" 585 bytes_removesuffix_impl(PyBytesObject *self, Py_buffer *suffix); 591 Py_buffer suffix = {NULL, NULL}; in bytes_removesuffix() local 593 if (PyObject_GetBuffer(arg, &suffix, PyBUF_SIMPLE) != 0) { in bytes_removesuffix() 596 if (!PyBuffer_IsContiguous(&suffix, 'C')) { in bytes_removesuffix() 600 return_value = bytes_removesuffix_impl(self, &suffix); in bytes_removesuffix() 603 /* Cleanup for suffix */ in bytes_removesuffix() [all...] |
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
H A D | ByteStringTest.java | 789 ByteString suffix = ByteString.copyFrom(bytes, 400, 600); in testStartsWith() 793 assertFalse(string.startsWith(suffix)); in testStartsWith() 794 assertFalse(prefix.startsWith(suffix)); in testStartsWith() 795 assertFalse(suffix.startsWith(prefix)); in testStartsWith() 804 ByteString suffix = ByteString.copyFrom(bytes, 400, 600); in testEndsWith() 807 assertTrue(string.endsWith(suffix)); in testEndsWith() 809 assertFalse(suffix.endsWith(prefix)); in testEndsWith() 810 assertFalse(prefix.endsWith(suffix)); in testEndsWith() 811 assertFalse(ByteString.EMPTY.endsWith(suffix)); in testEndsWith()
|
/kernel/linux/linux-6.6/drivers/thermal/intel/int340x_thermal/ |
H A D | processor_thermal_rfim.c | 91 #define RFIM_SHOW(suffix, table)\ 92 static ssize_t suffix##_show(struct device *dev,\ 122 #define RFIM_STORE(suffix, table)\ 123 static ssize_t suffix##_store(struct device *dev,\
|
/third_party/rust/crates/bindgen/csmith-fuzzing/ |
H A D | predicate.py | 146 bindings = new_temp_file(prefix="bindings-", suffix=".rs") 179 def new_temp_file(prefix, suffix=None): 180 temp = NamedTemporaryFile(delete=False, prefix=prefix, suffix=suffix)
|
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/third_party/perf/ |
H A D | perf_test.cc | 59 const std::string &suffix, in ResultsToString() 68 suffix.c_str(), units.c_str()); in ResultsToString() 76 const std::string &suffix, in PrintResultsImpl() 82 ResultsToString(measurement, modifier, trace, values, prefix, suffix, units, important) in PrintResultsImpl() 54 ResultsToString(const std::string &measurement, const std::string &modifier, const std::string &trace, const std::string &values, const std::string &prefix, const std::string &suffix, const std::string &units, bool important) ResultsToString() argument 71 PrintResultsImpl(const std::string &measurement, const std::string &modifier, const std::string &trace, const std::string &values, const std::string &prefix, const std::string &suffix, const std::string &units, bool important) PrintResultsImpl() argument
|
/third_party/protobuf/src/google/protobuf/compiler/java/ |
H A D | java_helpers.h | 179 // annotation data for that descriptor. `suffix` is usually empty, but may 183 const std::string& suffix) { in AnnotationFileName() 184 return descriptor->name() + suffix + ".java.pb.meta"; in AnnotationFileName() 190 const std::string& suffix = "") { in MaybePrintGeneratedAnnotation() 194 ? AnnotationFileName(descriptor, suffix) in MaybePrintGeneratedAnnotation() 182 AnnotationFileName(const Descriptor* descriptor, const std::string& suffix) AnnotationFileName() argument
|
/third_party/skia/third_party/externals/angle2/src/common/ |
H A D | string_utils_unittest.cpp | 287 bool runEndsWith(const char *str, const char *suffix) in runEndsWith() argument 291 return EndsWith(str, suffix); in runEndsWith() 295 return EndsWith(std::string(str), suffix); in runEndsWith() 297 return EndsWith(std::string(str), std::string(suffix)); in runEndsWith()
|
/third_party/eudev/src/shared/ |
H A D | util.c | 426 char *strnappend(const char *s, const char *suffix, size_t b) { in strnappend() argument 430 if (!s && !suffix) in strnappend() 434 return strndup(suffix, b); in strnappend() 436 if (!suffix) in strnappend() 440 assert(suffix); in strnappend() 451 memcpy(r+a, suffix, b); in strnappend() 457 char *strappend(const char *s, const char *suffix) { in strappend() argument 458 return strnappend(s, suffix, suffix ? strlen(suffix) in strappend() 1065 dirent_is_file_with_suffix(const struct dirent *de, const char *suffix) dirent_is_file_with_suffix() argument [all...] |
/third_party/elfutils/src/ |
H A D | nm.c | 131 const char *suffix); 135 const char *suffix); 410 const char *suffix) in handle_ar() 415 size_t suffix_len = suffix != NULL ? strlen (suffix) : 0; in handle_ar() 428 if (suffix != NULL) in handle_ar() 429 cp = stpcpy (cp, suffix); in handle_ar() 1529 const char *suffix) in handle_elf() 1532 size_t suffix_len = suffix == NULL ? 0 : strlen (suffix); in handle_elf() 409 handle_ar(int fd, Elf *elf, const char *prefix, const char *fname, const char *suffix) handle_ar() argument 1528 handle_elf(int fd, Elf *elf, const char *prefix, const char *fname, const char *suffix) handle_elf() argument [all...] |
/third_party/skia/third_party/externals/tint/src/ |
H A D | intrinsic_table.cc | 527 #define DECLARE_SAMPLED_TEXTURE(suffix, dim) \ 528 bool JOIN(match_texture_, suffix)(const sem::Type* ty, \ 532 const sem::SampledTexture* JOIN(build_texture_, suffix)( \ 561 #define DECLARE_MULTISAMPLED_TEXTURE(suffix, dim) \ 562 bool JOIN(match_texture_multisampled_, suffix)(const sem::Type* ty, \ 566 const sem::MultisampledTexture* JOIN(build_texture_multisampled_, suffix)( \ 581 #define DECLARE_DEPTH_TEXTURE(suffix, dim) \ 582 bool JOIN(match_texture_depth_, suffix)(const sem::Type* ty) { \ 586 suffix)(MatchState & state) { \ 630 #define DECLARE_STORAGE_TEXTURE(suffix, di [all...] |
/third_party/selinux/libselinux/src/ |
H A D | label_file.c | 413 const char *suffix; member 417 static char *rolling_append(char *current, const char *suffix, size_t max) in rolling_append() argument 423 if (!suffix) in rolling_append() 427 suffix_size = strlen(suffix); in rolling_append() 442 /* Append any given suffix */ in rolling_append() 445 strcpy(to, suffix); in rolling_append() 462 static FILE *open_file(const char *path, const char *suffix, in open_file() argument 471 * Rolling append of suffix. Try to open with path.suffix then the in open_file() 472 * next as path.suffix in open_file() 532 process_file(const char *path, const char *suffix, struct selabel_handle *rec, const char *prefix, struct selabel_digest *digest) process_file() argument [all...] |