/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | CLMemory.cpp | 33 flags.set(parentFlags.mask(access)); in InheritMemFlags() 37 flags.set(parentFlags.mask(hostAccess)); in InheritMemFlags() 39 flags.set(parentFlags.mask(hostPtrFlags)); in InheritMemFlags()
|
/third_party/skia/third_party/externals/spirv-tools/source/val/ |
H A D | function.h | 21 #include <set> 163 // - A minimal set of edges so that a forward traversal from the 165 // - A minimal set of edges so that a backward traversal from the 233 // Inserts id to the set of functions called from this function. 238 // Returns a set with ids of all functions called from this function. 239 const std::set<uint32_t> function_call_targets() const { in function_call_targets() 311 /// pseudo entry node is the minimal set of nodes such that all nodes in the 326 /// pseudo exit node is the minimal set of nodes such that all nodes in the 338 // Maps a block to its successors in the augmented CFG, if that set is 342 // Maps a block to its predecessors in the augmented CFG, if that set i [all...] |
/third_party/skia/src/effects/ |
H A D | Sk2DPathEffect.cpp | 19 // Calling invert will set the type mask on both matrices, making them thread safe. in Sk2DPathEffect() 51 src.set(SkIntToScalar(x) + SK_ScalarHalf, SkIntToScalar(y) + SK_ScalarHalf); in nextSpan() 130 src[0].set(SkIntToScalar(u) + SK_ScalarHalf, SkIntToScalar(v) + SK_ScalarHalf); 131 src[1].set(SkIntToScalar(u+ucount) + SK_ScalarHalf, SkIntToScalar(v) + SK_ScalarHalf);
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | code_sink.cpp | 17 #include <set> 292 const std::unordered_set<uint32_t>& set) { in IntersectsPath() 306 if (set.count(bb->id())) { in IntersectsPath() 291 IntersectsPath(uint32_t start, uint32_t end, const std::unordered_set<uint32_t>& set) IntersectsPath() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | code_sink.cpp | 17 #include <set> 292 const std::unordered_set<uint32_t>& set) { in IntersectsPath() 306 if (set.count(bb->id())) { in IntersectsPath() 291 IntersectsPath(uint32_t start, uint32_t end, const std::unordered_set<uint32_t>& set) IntersectsPath() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/ |
H A D | function.h | 21 #include <set> 163 // - A minimal set of edges so that a forward traversal from the 165 // - A minimal set of edges so that a backward traversal from the 233 // Inserts id to the set of functions called from this function. 238 // Returns a set with ids of all functions called from this function. 239 const std::set<uint32_t> function_call_targets() const { in function_call_targets() 311 /// pseudo entry node is the minimal set of nodes such that all nodes in the 326 /// pseudo exit node is the minimal set of nodes such that all nodes in the 338 // Maps a block to its successors in the augmented CFG, if that set is 342 // Maps a block to its predecessors in the augmented CFG, if that set i [all...] |
/third_party/skia/src/pathops/ |
H A D | SkPathOpsQuad.h | 53 const SkDQuad& set(const SkPoint pts[kPointCount] 100 quad.set(a); in SubDivide() 107 quad.set(pts); in SubDivide()
|
H A D | SkPathOpsCurve.cpp | 65 dCurve.set(curve, curveWeight); in setConicBounds() 75 dCurve.set(curve); in setCubicBounds() 85 dCurve.set(curve); in setQuadBounds()
|
/third_party/skia/src/ports/ |
H A D | SkOSFile_posix.cpp | 154 self.fPath.set(path); in reset() 164 self.fSuffix.set(suffix); in reset() 207 name->set(entry->d_name); in next()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | gen-arabic-table.py | 69 for value in sorted (set ([v for v in values.values ()] + ['JOINING_TYPE_X'])): 80 all_blocks = set([blocks[u] for u in uu]) 137 pages = set([u>>page_bits for u in [s for s,e in ranges]+[e for s,e in ranges]])
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
H A D | SubtargetFeature.h | 56 set(I); in FeatureBitset() 59 FeatureBitset &set() { in set() function in llvm::FeatureBitset 64 constexpr FeatureBitset &set(unsigned I) { in set() function in llvm::FeatureBitset
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/ |
H A D | RISCVMergeBaseOffset.cpp | 32 #include <set> 52 return MachineFunctionProperties().set( 62 std::set<MachineInstr *> DeadInstrs;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | EquivalenceClasses.h | 21 #include <set> 32 /// of the element being indexed per entry in the set, and allows any arbitrary 39 /// EC.unionSets(1, 2); // insert 1, 2 into the same set 41 /// EC.unionSets(5, 1); // merge the set for 1 with 5's set. 47 /// MI != EC.member_end(); ++MI) // Loop over members in this set. 49 /// cerr << "\n"; // Finish set. 59 /// ECValue - The EquivalenceClasses data structure is just a set of these. 61 /// value itself, which provides the ordering that the set queries. Next, it 63 /// in the unioned set [all...] |
H A D | SmallSet.h | 24 #include <set> 37 using SetIterTy = typename std::set<T, C>::const_iterator; 41 /// Iterators to the parts of the SmallSet containing the data. They are set 56 // MSVC STL, where set<T>::const_iterator is not trivially copy constructible. 129 /// SmallSet - This maintains a set of unique values, optimizing for the case 130 /// when the set is small (less than N). In this case, the set can be 131 /// maintained with no mallocs. If the set gets large, we expand to using an 132 /// std::set to maintain reasonable lookup times. 139 std::set< [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
H A D | DominanceFrontierImpl.h | 28 #include <set> 76 std::set<BlockT *> tmpSet; in compareDomSet() 138 const std::set<BlockT *> &BBs = I->second; in print()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | classdecl.js | 16 public set d(a: number) { 120 set: function (a) {
224 set d(a: number);
|
/third_party/protobuf/src/google/protobuf/compiler/ |
H A D | command_line_interface.h | 43 #include <set> 168 // The set will include descriptors for all the files listed in PROTO_FILES as 323 std::set<const FileDescriptor*>* already_seen, 347 // Version info set with SetVersionInfo(). 406 std::set<std::string> direct_dependencies_;
|
/third_party/skia/bench/ |
H A D | AAClipBench.cpp | 105 fSizes[0].set(SkIntToScalar(kImageSize), SkIntToScalar(kImageSize)); in NestedAAClipBench() 108 fSizes[i].set(fSizes[i-1].fX/2, fSizes[i-1].fY/2); in NestedAAClipBench() 185 fRect.set(fBounds); in AAClipBuilderBench()
|
/third_party/spirv-tools/source/val/ |
H A D | function.h | 21 #include <set> 165 // - A minimal set of edges so that a forward traversal from the 167 // - A minimal set of edges so that a backward traversal from the 235 // Inserts id to the set of functions called from this function. 240 // Returns a set with ids of all functions called from this function. 241 const std::set<uint32_t> function_call_targets() const { in function_call_targets() 313 /// pseudo entry node is the minimal set of nodes such that all nodes in the 328 /// pseudo exit node is the minimal set of nodes such that all nodes in the 340 // Maps a block to its successors in the augmented CFG, if that set is 344 // Maps a block to its predecessors in the augmented CFG, if that set i [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/sc/ |
H A D | vktSafetyCriticalApiTests.cpp | 26 #include <set> 85 std::set<std::string> coreExtensions in forbiddenCoreExtensions() 147 return tcu::TestStatus::pass("No extensions from forbidden set"); in forbiddenCoreExtensions() 255 std::set<std::string> extensions in allowedExtensions()
|
/third_party/curl/lib/ |
H A D | cf-socket.c | 109 infof(data, "Could not set TCP_NODELAY: %s", in tcpnodelay() 131 infof(data, "Could not set SO_NOSIGPIPE: %s", in nosigpipe() 161 int optval = data->set.tcp_keepalive?1:0; in tcpkeepalive() 163 /* only set IDLE and INTVL if setting KEEPALIVE is successful */ in tcpkeepalive() 166 infof(data, "Failed to set SO_KEEPALIVE on fd " in tcpkeepalive() 175 optval = curlx_sltosi(data->set.tcp_keepidle); in tcpkeepalive() 178 optval = curlx_sltosi(data->set.tcp_keepintvl); in tcpkeepalive() 183 infof(data, "Failed to set SIO_KEEPALIVE_VALS on fd " in tcpkeepalive() 189 optval = curlx_sltosi(data->set.tcp_keepidle); in tcpkeepalive() 193 infof(data, "Failed to set TCP_KEEPIDL in tcpkeepalive() [all...] |
/third_party/node/deps/v8/src/wasm/baseline/ |
H A D | liftoff-assembler.cc | 194 move_dst_regs_.set(dst); in MoveRegister() 201 load_dst_regs_.set(dst); in LoadConstant() 222 load_dst_regs_.set(dst); in LoadStackSlot() 232 // Both low and high need to be set in load_dst_regs_ but when iterating in LoadStackSlot() 248 load_dst_regs_.set(dst); in LoadI64HalfStackSlot() 478 if (src.is_reg()) used_regs.set(src.reg()); in InitMerge() 489 if (src.is_reg()) used_regs.set(src.reg()); in InitMerge() 561 spills->set(slot.reg()); in GetTaggedSlotsForOOLCode() 699 pinned.set(slot.reg()); in PrepareLoopArgs() 968 param_regs->set(re in PrepareStackTransfers() [all...] |
/third_party/skia/src/core/ |
H A D | SkGeometry.cpp | 63 // Just returns its argument, but makes it easy to set a break-point to know when 194 v[0].set(-a.fY, +a.fX); in SkFindBisector() 195 v[1].set(+b.fY, -b.fX); in SkFindBisector() 200 v[0].set(+a.fY, -a.fX); in SkFindBisector() 201 v[1].set(-b.fY, +b.fX); in SkFindBisector() 279 dst[0].set(src[0].fX, a); in SkChopQuadAtYExtrema() 280 dst[1].set(src[1].fX, b); in SkChopQuadAtYExtrema() 281 dst[2].set(src[2].fX, c); in SkChopQuadAtYExtrema() 307 dst[0].set(a, src[0].fY); 308 dst[1].set( [all...] |
/third_party/node/deps/v8/src/objects/ |
H A D | intl-objects.cc | 580 std::set<std::string> Intl::BuildLocaleSet( in BuildLocaleSet() 583 std::set<std::string> locales; in BuildLocaleSet() 1027 // weights_uniq_sorted = sorted(set(ws)) 1187 bool USetContainsAllAsciiItem(USet* set) { in USetContainsAllAsciiItem() argument 1191 const int length = uset_getItemCount(set); in USetContainsAllAsciiItem() 1196 uset_getItem(set, i, &start, &end, buffer, kBufferSize, &status); in USetContainsAllAsciiItem() 1233 // These attributes must be set to the expected value for fast comparisons. in CollatorAllowsFastComparison() 1290 // result is EQUAL, we set `processed_until_out` to the first non-processed 1593 // 17. If hasSd or roundingPriority is not "auto", set needSd to true; else, in SetNumberFormatDigitOptions() 1594 // set needS in SetNumberFormatDigitOptions() [all...] |
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
H A D | CollationRuleParser.java | 76 void suppressContractions(UnicodeSet set) {} in suppressContractions() argument 78 void optimize(UnicodeSet set) {} in optimize() argument 87 * The Sink must be set before parsing. 88 * The Importer can be set, otherwise [import locale] syntax is not supported. 678 UnicodeSet set = new UnicodeSet(); in parseSetting() 679 j = parseUnicodeSet(j, set); in parseSetting() 682 sink.optimize(set); in parseSetting() 684 setParseError("[optimize set] failed", e); in parseSetting() 690 sink.suppressContractions(set); in parseSetting() 692 setParseError("[suppressContractions set] faile in parseSetting() 772 parseUnicodeSet(int i, UnicodeSet set) parseUnicodeSet() argument [all...] |