/third_party/skia/third_party/externals/spirv-cross/ |
H A D | spirv_cross_c.h | 765 unsigned set, 797 unsigned set, 819 SPVC_PUBLIC_API spvc_result spvc_compiler_get_active_interface_variables(spvc_compiler compiler, spvc_set *set); 820 SPVC_PUBLIC_API spvc_result spvc_compiler_set_enabled_interface_variables(spvc_compiler compiler, spvc_set set);
|
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/ |
H A D | fuzzer_pass_donate_modules.cpp | 19 #include <set> 152 // Consider every external instruction set import in the donor module. in HandleExternalInstructionImports() 631 // This set tracks the ids of those instructions for which donation was in HandleFunctions() 634 std::set<uint32_t> skipped_instructions; in HandleFunctions() 674 const std::set<uint32_t>& skipped_instructions) const { in CanDonateInstruction() 849 std::set<uint32_t>* skipped_instructions) { in HandleDifficultInstruction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
H A D | fuzzer_pass_donate_modules.cpp | 19 #include <set> 152 // Consider every external instruction set import in the donor module. in HandleExternalInstructionImports() 631 // This set tracks the ids of those instructions for which donation was in HandleFunctions() 634 std::set<uint32_t> skipped_instructions; in HandleFunctions() 674 const std::set<uint32_t>& skipped_instructions) const { in CanDonateInstruction() 849 std::set<uint32_t>* skipped_instructions) { in HandleDifficultInstruction()
|
/third_party/skia/third_party/externals/icu/source/extra/uconv/ |
H A D | uconv.cpp | 192 /* Print converter information. If lookfor is set, only that converter will 497 USet *set = uset_open(1, 0); in cnvSigType() local 499 ucnv_getUnicodeSet(cnv, set, UCNV_ROUNDTRIP_SET, &err); in cnvSigType() 500 if (U_SUCCESS(err) && uset_contains(set, uSig)) { in cnvSigType() 505 uset_close(set); in cnvSigType() 694 // available, it returns NULL and a failure code. We also set the in convertFile() 754 // At the last conversion in the file, flush should be set to in convertFile() 782 // - an error occurred during conversion (an error code is set) in convertFile() 918 // At the last conversion flush should be set to true to ensure that in convertFile() 1391 * Hey, Emacs, please set th [all...] |
/third_party/skia/tests/ |
H A D | SkRuntimeEffectTest.cpp | 44 // Runtime SkSL supports a limited set of uniform types. No bool, for example: in DEF_TEST() 708 REPORTER_ASSERT(r, b.uniform("x").set(&x, 1)); in DEF_TEST() 710 // add extra value to ensure that set doesn't try to use sizeof(array) in DEF_TEST() 712 REPORTER_ASSERT(r, b.uniform("offset").set<float>(origin, 2)); in DEF_TEST() 715 REPORTER_ASSERT(r, !b.uniform("offset").set<float>(origin, 1)); in DEF_TEST() 716 REPORTER_ASSERT(r, !b.uniform("offset").set<float>(origin, 3)); in DEF_TEST() 826 // It also checks that we correctly set the "referencesSampleCoords" bit on the runtime effect in DEF_TEST()
|
H A D | CanvasTest.cpp | 392 pts[0].set(0, 0); 393 pts[1].set(SkIntToScalar(kWidth), 0); 394 pts[2].set(SkIntToScalar(kWidth), SkIntToScalar(kHeight)); 395 pts[3].set(0, SkIntToScalar(kHeight));
|
/third_party/skia/src/utils/ |
H A D | SkShadowUtils.cpp | 181 translate->set(0, 0); in isCompatible() 198 translate->set(0, 0); in makeVertices() 202 translate->set(0, 0); in makeVertices() 221 * This manages a set of tessellations for a given shape in the cache. Because SkResourceCache 365 // If this is valid after Find then the caller should add the vertices to the tessellation set 375 * necessary translation vector are set on the FindContext. 482 // Update or initialize a tessellation set and add it to the cache. in draw_shadow() 555 // Similarly, we set the greyscale alpha based on luminance and alpha so that in ComputeTonalColors() 569 // set the alpha to (S_a + C_a - S_a*C_a). in ComputeTonalColors() 707 factory.fOffset.set( in drawShadow() [all...] |
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-bit-set.hh | 41 hb_bit_set_t (const hb_bit_set_t& other) : hb_bit_set_t () { set (other); } in hb_bit_set_t() 43 hb_bit_set_t& operator= (const hb_bit_set_t& other) { set (other); return *this; } in operator =() 179 page->set (g, v); in set_array() 336 void set (const hb_bit_set_t &other) in set() function 483 // Move page_map entries that we're keeping from the left side set in process() 485 // passthru_left is set since no left side pages will be removed in process()
|
H A D | hb-repacker.hh | 322 // way. More specifically this is set up so that if a set of objects have the same in sort_shortest_distance() 407 // set the subgraph incoming edge count to match all of root_idx's incoming edges in isolate_subgraph() 411 subgraph.set (root_idx, wide_parents (root_idx, parents)); in isolate_subgraph() 453 // Update roots set with new indices as needed. in isolate_subgraph() 473 subgraph.set (link.objidx, subgraph[link.objidx] + 1); in find_subgraph() 476 subgraph.set (link.objidx, 1); in find_subgraph() 499 index_map.set (node_idx, duplicate (node_idx)); in duplicate_subgraph() 800 // Redundant ones are filtered out later on by the visited set. in update_distances()
|
/third_party/python/Lib/test/ |
H A D | test_runpy.py | 102 # If an expected loader is set, we just check we got the right 114 self.assertEqual(set(result_ns), set(expected_ns)) 565 expected_packages = set() 566 expected_modules = set()
|
/third_party/python/Lib/ |
H A D | _collections_abc.py | 52 set_iterator = type(iter(set())) 529 """A set is a finite, iterable container. 633 """Compute the hash value of a set. 636 But if you define a hashable set type, its __hash__ should 670 """A mutable set is a finite, iterable container. 749 MutableSet.register(set) 764 # Tell ABCMeta.__new__ that this class should have TPFLAGS_MAPPING set. 787 "D.keys() -> a set-like object providing a view on D's keys" 791 "D.items() -> a set-like object providing a view on D's items" 830 return set(i [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
H A D | VPlan.cpp | 318 State.set(this, V, Part); in generateInstruction() 326 State.set(this, V, Part); in generateInstruction() 333 State.set(this, V, Part); in generateInstruction() 341 State.set(this, V, Part); in generateInstruction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
H A D | MergeFunctions.cpp | 11 // Order relation is defined on set of functions. It was made through 16 // four properties on the functions set: 27 // -- "FunctionPtr" instances are stored in std::set collection, so every 28 // std::set::insert operation will give you result in log(N) time. 130 #include <set> 224 using FnTreeType = std::set<FunctionNode, FunctionNodeCmp>; 233 /// Checks the rules of order relation introduced among functions set. 286 /// The set of all distinct functions. Use the insert() and remove() methods 477 U->set(BitcastNew); in replaceDirectCallers() 556 std::set<Instructio in filterInstsUnrelatedToPDI() [all...] |
/third_party/skia/tools/skdiff/ |
H A D | skdiff_main.cpp | 26 * each of the first two; the first are treated as a set of baseline, 27 * the second a set of variant images, and a diff image is written into the 731 baseDir.set(argv[i]); in main() 734 comparisonDir.set(argv[i]); in main() 737 outputDir.set(argv[i]); in main() 787 outputDir.set(""); in main()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | ucnv_ext.cpp | 276 * target<targetLimit; set error code for overflow 422 * to the error buffer, set an error code, in ucnv_extContinueMatchToU() 445 /* set the error code for unassigned */ in ucnv_extContinueMatchToU() 747 * target<targetLimit; set error code for overflow 925 * to the error buffer, set an error code, in ucnv_extContinueMatchFromU() 947 /* set the error code for unassigned */ in ucnv_extContinueMatchFromU() 955 // Add only code points for which the roundtrip flag is set. in extSetUseMapping() 961 // Do not add entries with reserved bits set. in extSetUseMapping() 967 // Do not add entries with reserved bits set. in extSetUseMapping() 1003 sa->add(sa->set, firstC in ucnv_extGetUnicodeSetString() [all...] |
H A D | uniset_props.cpp | 50 // Special property set IDs 147 * Constructs a set from the given pattern, optionally ignoring 150 * @param pattern a string specifying what characters are in the set 193 // _applyPattern calls add() etc., which set pat to empty. in applyPatternIgnoreSpace() 287 // lastItem: 0=none, 1=char, 2=set in applyPattern() 313 // -------- Parse '[' of opening delimiter OR nested set. in applyPattern() 314 // If there is a nested set, use `setMode' to define how in applyPattern() 315 // the set should be parsed. If the '[' is part of the in applyPattern() 318 // characters representing a nested set in the symbol in applyPattern() 364 // (important not to modify stored set) in applyPattern() 790 const USet *set = u_getBinaryPropertySet(prop, &ec); applyIntPropertyValue() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | BitVector.h | 29 /// ForwardIterator for the bits that are set. 171 /// count - Returns the number of bits which are set. 179 /// any - Returns true if any bit is set. 187 /// all - Returns true if all bits are set. 200 /// none - Returns true if none of the bits are set. 205 /// find_first_in - Returns the index of the first set bit in the range 234 /// find_last_in - Returns the index of the last set bit in the range 266 /// range [Begin, End). Returns -1 if all bits in the range are set. 297 /// range [Begin, End). Returns -1 if all bits in the range are set. 329 /// find_first - Returns the index of the first set bi 397 BitVector &set() { set() function in llvm::BitVector 403 BitVector &set(unsigned Idx) { set() function in llvm::BitVector 410 BitVector &set(unsigned I, unsigned E) { set() function in llvm::BitVector [all...] |
/third_party/protobuf/php/ext/google/protobuf/ |
H A D | def.c | 917 google_protobuf_FileDescriptorSet *set; in add_descriptor() local 920 set = google_protobuf_FileDescriptorSet_parse(data, data_len, arena); in add_descriptor() 922 if (!set) { in add_descriptor() 927 files = google_protobuf_FileDescriptorSet_file(set, &n); in add_descriptor()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/ |
H A D | btree_benchmark.cc | 22 #include <set> 421 using stl_set_##value = std::set<value>; \ 574 using stl_set_size##SIZE##copies##COPIES = std::set<BigType<SIZE, COPIES>>; \ 671 using stl_set_size##SIZE##copies##SIZE##ptr = std::set<BigType<SIZE, SIZE>>; \
|
/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/ |
H A D | conformance_profile.h | 39 #include <set> 119 // If previous parts of this test succeeded, remove it from that set. in addTestFailure() 138 const std::set<std::string>& test_names) const { in expectFailedTests() 234 std::set<std::string> test_failures_; 235 std::set<std::string> test_successes_; 916 // A tag that describes which set of properties we will check when the user
|
/third_party/skia/gm/ |
H A D | dashing.cpp | 220 pts[0].set(0, SkIntToScalar(y)); in drawDashedLines() 221 pts[1].set(lineLength, SkIntToScalar(y)); in drawDashedLines() 229 pts[0].set(SkIntToScalar(x), 0); in drawDashedLines() 230 pts[1].set(SkIntToScalar(x), lineLength); in drawDashedLines()
|
/third_party/vk-gl-cts/modules/egl/ |
H A D | teglCreateContextExtTests.cpp | 51 #include <set> 56 using std::set; 371 set<string> requiredExtensions; in checkRequiredExtensions() 432 for (std::set<string>::const_iterator reqExt = requiredExtensions.begin(); reqExt != requiredExtensions.end(); ++reqExt) in checkRequiredExtensions() 859 log << TestLog::Message << "Invalid GL_CONTEXT_FLAGS. GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT to be set, got '" << eglContextFlagsToString(contextFlagsGL) << "'" << TestLog::EndMessage; in validateCurrentContext()
|
/third_party/mesa3d/src/intel/vulkan/ |
H A D | genX_cmd_buffer.c | 178 * just set them all to the maximum. in cmd_buffer_emit_state_base_address() 201 * To avoid this and other potential problems, we may as well set it in cmd_buffer_emit_state_base_address() 294 * always set for GPGPU workloads when “Texture Cache Invalidation in cmd_buffer_emit_state_base_address() 295 * Enable” bit is set". in cmd_buffer_emit_state_base_address() 650 /* If will_full_fast_clear is set, the caller promises to fast-clear the in transition_depth_buffer() 721 * a shadow whenever VK_IMAGE_USAGE_SAMPLED_BIT is set and copy back and in transition_stencil_buffer() 757 /* If will_full_fast_clear is set, the caller promises to fast-clear the in transition_stencil_buffer() 1140 * command streamer stall bit set. in copy_fast_clear_dwords() 1393 /* If will_full_fast_clear is set, the caller promises to in transition_color_buffer() 1423 /* If will_full_fast_clear is set, th in transition_color_buffer() 2671 struct anv_descriptor_set *set = emit_binding_table() local 2683 const struct anv_descriptor_set *set = emit_binding_table() local 3024 struct anv_descriptor_set *set = get_push_range_address() local 3049 struct anv_descriptor_set *set = get_push_range_address() local 3099 struct anv_descriptor_set *set = get_push_range_bound_size() local 3114 struct anv_descriptor_set *set = get_push_range_bound_size() local [all...] |
/third_party/node/deps/v8/src/objects/ |
H A D | elements.cc | 261 to.set(i + to_start, value, write_barrier_mode); in CopyDictionaryToObjectElements() 310 to->set(i + to_start, *value, UPDATE_WRITE_BARRIER); in CopyDoubleToObjectElements() 375 to.set(to_start, Smi::ToInt(hole_or_smi)); in CopySmiToDoubleElements() 408 to.set(to_start, Smi::ToInt(smi)); in CopyPackedSmiToDoubleElements() 436 to.set(to_start, hole_or_object.Number()); in CopyObjectToDoubleElements() 463 to.set(i + to_start, from.ValueAt(entry).Number()); in CopyDictionaryToDoubleElements() 1093 values_or_entries->set(count++, *value); in CollectValuesOrEntriesImpl() 1120 values_or_entries->set(count++, *value); in CollectValuesOrEntriesImpl() 1168 list->set(insertion_index, *index_string); in DirectCollectElementIndicesImpl() 1171 list->set(insertion_inde in DirectCollectElementIndicesImpl() [all...] |
/third_party/node/deps/v8/src/wasm/baseline/loong64/ |
H A D | liftoff-assembler-loong64.h | 603 Register temp0 = pinned.set(GetUnusedRegister(kGpReg, pinned)).gp(); \ 604 Register temp1 = pinned.set(GetUnusedRegister(kGpReg, pinned)).gp(); \ 605 Register temp2 = pinned.set(GetUnusedRegister(kGpReg, pinned)).gp(); \ 606 Register temp3 = pinned.set(GetUnusedRegister(kGpReg, pinned)).gp(); \ 658 Register temp0 = pinned.set(GetUnusedRegister(kGpReg, pinned)).gp(); in AtomicSub() 659 Register temp1 = pinned.set(GetUnusedRegister(kGpReg, pinned)).gp(); in AtomicSub() 660 Register temp2 = pinned.set(GetUnusedRegister(kGpReg, pinned)).gp(); in AtomicSub() 661 Register temp3 = pinned.set(GetUnusedRegister(kGpReg, pinned)).gp(); in AtomicSub() 716 Register temp0 = pinned.set(GetUnusedRegister(kGpReg, pinned)).gp(); in AtomicExchange() 717 Register temp1 = pinned.set(GetUnusedRegiste in AtomicExchange() [all...] |