Home
last modified time | relevance | path

Searched refs:pair (Results 426 - 450 of 2460) sorted by relevance

1...<<11121314151617181920>>...99

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
H A DAttributes.h168 /// Returns the argument numbers for the allocsize attribute (or pair(0, 0)
170 std::pair<unsigned, Optional<unsigned>> getAllocSizeArgs() const;
293 std::pair<unsigned, Optional<unsigned>> getAllocSizeArgs() const;
359 ArrayRef<std::pair<unsigned, Attribute>> Attrs);
361 ArrayRef<std::pair<unsigned, AttributeSet>> Attrs);
637 /// Get the allocsize argument numbers (or pair(0, 0) if unknown).
638 std::pair<unsigned, Optional<unsigned>>
794 /// doesn't exist, pair(0, 0) is returned.
795 std::pair<unsigned, Optional<unsigned>> getAllocSizeArgs() const;
845 using td_type = std::pair<st
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
H A DMCStreamer.h64 using MCSectionSubPair = std::pair<MCSection *, const MCExpr *>;
216 SmallVector<std::pair<MCSectionSubPair, MCSectionSubPair>, 4> SectionStack;
890 ArrayRef<std::pair<const MCSymbol *, const MCSymbol *>> Ranges,
894 ArrayRef<std::pair<const MCSymbol *, const MCSymbol *>> Ranges,
898 ArrayRef<std::pair<const MCSymbol *, const MCSymbol *>> Ranges,
902 ArrayRef<std::pair<const MCSymbol *, const MCSymbol *>> Ranges,
906 ArrayRef<std::pair<const MCSymbol *, const MCSymbol *>> Ranges,
/third_party/gn/src/gn/
H A Dcommand_desc.cc321 auto pair = handler_map.find(what); in HandleProperty() local
322 if (pair != handler_map.end()) in HandleProperty()
323 pair->second(what, v.get(), false); in HandleProperty()
349 auto pair = handler_map.find(what); in PrintTarget() local
350 if (pair != handler_map.end()) in PrintTarget()
351 pair->second(what, &iter.value(), true); in PrintTarget()
433 auto pair = handler_map.find(what); in PrintConfig() local
434 if (pair != handler_map.end()) in PrintConfig()
435 pair->second(what, &iter.value(), true); in PrintConfig()
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationIterator.java922 // We cannot enforce a limit in the middle of a surrogate pair or similar. in previousCEUnsafe()
1079 // Decrement the value for the last pair. in appendNumericSegmentCEs()
1088 // Read the first pair. in appendNumericSegmentCEs()
1089 int pair; in appendNumericSegmentCEs()
1092 // Only "half a pair" if we have an odd number of digits. in appendNumericSegmentCEs()
1093 pair = digits.charAt(0); in appendNumericSegmentCEs()
1096 pair = digits.charAt(0) * 10 + digits.charAt(1); in appendNumericSegmentCEs()
1099 pair = 11 + 2 * pair; in appendNumericSegmentCEs()
1106 primary |= pair; in appendNumericSegmentCEs()
[all...]
H A DCollationSettings.java205 int pair = ranges[i]; in setReordering()
206 int limit1 = pair >>> 24; in setReordering()
208 table[b] = (byte)(b + pair); in setReordering()
212 if((pair & 0xff0000) != 0) { in setReordering()
456 * <p>Each entry is a (limit, offset) pair.
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/coll/
H A DCollationIterator.java924 // We cannot enforce a limit in the middle of a surrogate pair or similar. in previousCEUnsafe()
1081 // Decrement the value for the last pair. in appendNumericSegmentCEs()
1090 // Read the first pair. in appendNumericSegmentCEs()
1091 int pair; in appendNumericSegmentCEs()
1094 // Only "half a pair" if we have an odd number of digits. in appendNumericSegmentCEs()
1095 pair = digits.charAt(0); in appendNumericSegmentCEs()
1098 pair = digits.charAt(0) * 10 + digits.charAt(1); in appendNumericSegmentCEs()
1101 pair = 11 + 2 * pair; in appendNumericSegmentCEs()
1108 primary |= pair; in appendNumericSegmentCEs()
[all...]
H A DCollationSettings.java207 int pair = ranges[i]; in setReordering()
208 int limit1 = pair >>> 24; in setReordering()
210 table[b] = (byte)(b + pair); in setReordering()
214 if((pair & 0xff0000) != 0) { in setReordering()
458 * <p>Each entry is a (limit, offset) pair.
/third_party/icu/icu4c/source/i18n/
H A Dcollationiterator.cpp799 // Decrement the value for the last pair. in appendNumericSegmentCEs()
808 // Read the first pair. in appendNumericSegmentCEs()
809 uint32_t pair; in appendNumericSegmentCEs() local
812 // Only "half a pair" if we have an odd number of digits. in appendNumericSegmentCEs()
813 pair = digits[0]; in appendNumericSegmentCEs()
816 pair = digits[0] * 10 + digits[1]; in appendNumericSegmentCEs()
819 pair = 11 + 2 * pair; in appendNumericSegmentCEs()
826 primary |= pair; in appendNumericSegmentCEs()
831 primary |= pair << shif in appendNumericSegmentCEs()
[all...]
H A Dcollationsettings.cpp160 uint32_t pair = ranges[i]; in setReordering() local
161 int32_t limit1 = (int32_t)(pair >> 24); in setReordering()
163 table[b] = (uint8_t)(b + pair); in setReordering()
167 if((pair & 0xff0000) != 0) { in setReordering()
/third_party/nghttp2/src/
H A Dshrpx_log.cc362 std::pair<OutputIterator, OutputIterator> copy(const char *src, size_t srclen, in copy()
373 std::pair<OutputIterator, OutputIterator>
381 std::pair<OutputIterator, OutputIterator>
389 std::pair<OutputIterator, OutputIterator>
397 std::pair<OutputIterator, OutputIterator> copy(char c, OutputIterator d_first, in copy()
413 std::pair<OutputIterator, OutputIterator>
429 std::pair<OutputIterator, OutputIterator> copy(T n, OutputIterator d_first, in copy()
500 std::pair<OutputIterator, OutputIterator>
531 std::pair<OutputIterator, OutputIterator> copy_escape(const StringRef &src, in copy_escape()
/third_party/node/deps/icu-small/source/i18n/
H A Dcollationiterator.cpp799 // Decrement the value for the last pair. in appendNumericSegmentCEs()
808 // Read the first pair. in appendNumericSegmentCEs()
809 uint32_t pair; in appendNumericSegmentCEs() local
812 // Only "half a pair" if we have an odd number of digits. in appendNumericSegmentCEs()
813 pair = digits[0]; in appendNumericSegmentCEs()
816 pair = digits[0] * 10 + digits[1]; in appendNumericSegmentCEs()
819 pair = 11 + 2 * pair; in appendNumericSegmentCEs()
826 primary |= pair; in appendNumericSegmentCEs()
831 primary |= pair << shif in appendNumericSegmentCEs()
[all...]
H A Dcollationsettings.cpp160 uint32_t pair = ranges[i]; in setReordering() local
161 int32_t limit1 = (int32_t)(pair >> 24); in setReordering()
163 table[b] = (uint8_t)(b + pair); in setReordering()
167 if((pair & 0xff0000) != 0) { in setReordering()
/third_party/node/deps/v8/src/objects/
H A Dcall-site-info.cc334 auto pair = AccessorPair::cast(value); in InferMethodNameFromFastObject() local
335 if (pair.getter() != fun && pair.setter() != fun) continue; in InferMethodNameFromFastObject()
359 auto pair = AccessorPair::cast(value); in InferMethodNameFromDictionary() local
360 if (pair.getter() != fun && pair.setter() != fun) continue; in InferMethodNameFromDictionary()
456 Handle<AccessorPair> pair = Handle<AccessorPair>::cast(accessors); in GetMethodName() local
457 if (pair->getter() == *function || pair->setter() == *function) { in GetMethodName()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dcollationiterator.cpp799 // Decrement the value for the last pair. in appendNumericSegmentCEs()
808 // Read the first pair. in appendNumericSegmentCEs()
809 uint32_t pair; in appendNumericSegmentCEs() local
812 // Only "half a pair" if we have an odd number of digits. in appendNumericSegmentCEs()
813 pair = digits[0]; in appendNumericSegmentCEs()
816 pair = digits[0] * 10 + digits[1]; in appendNumericSegmentCEs()
819 pair = 11 + 2 * pair; in appendNumericSegmentCEs()
826 primary |= pair; in appendNumericSegmentCEs()
831 primary |= pair << shif in appendNumericSegmentCEs()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
H A DTargetInstrInfo.h67 using ParamLoadedValue = std::pair<MachineOperand, DIExpression*>;
156 /// Assigns the (CommutableOpIdx1, CommutableOpIdx2) pair of commutable
158 /// One or both input values of the pair: (ResultIdx1, ResultIdx2) may be
162 /// The function returns true iff after the result pair redefinition
163 /// the fixed result pair is equal to or equivalent to the source pair of
213 /// the pair of frame start-stop instructions and the space that is set up
214 /// prior to the pair.
335 /// subregisters registers may not be byte-sized, and a pair of discontiguous
448 /// A pair compose
[all...]
H A DMachineRegisterInfo.h74 IndexedMap<std::pair<RegClassOrRegBank, MachineOperand *>,
95 /// virtual registers. For each virtual register, it keeps a pair of hint
98 /// first member of the pair being non-zero. If the hinted register is
101 IndexedMap<std::pair<unsigned, SmallVector<unsigned, 4>>,
146 std::vector<std::pair<unsigned, unsigned>> LiveIns;
791 std::pair<unsigned, unsigned>
796 return std::pair<unsigned, unsigned>(RegAllocHints[VReg.id()].first, in getRegAllocationHint()
804 std::pair<unsigned, unsigned> Hint = getRegAllocationHint(VReg); in getSimpleHint()
810 const std::pair<unsigned, SmallVector<unsigned, 4>>
933 std::vector<std::pair<unsigne
[all...]
/kernel/linux/linux-5.10/drivers/ata/
H A Dpata_optidma.c118 struct ata_device *pair = ata_dev_pair(adev); in optidma_mode_setup() local
153 if (pair) { in optidma_mode_setup()
156 if (pair->dma_mode) in optidma_mode_setup()
159 pair_addr = addr_timing[pci_clock][pair->pio_mode - XFER_PIO_0]; in optidma_mode_setup()
/kernel/linux/linux-5.10/samples/bpf/
H A Dsockex3_kern.c113 struct pair { struct
121 __type(value, struct pair);
128 struct pair *value; in update_stats()
135 struct pair val = {1, skb->len}; in update_stats()
/kernel/linux/linux-6.6/drivers/ata/
H A Dpata_optidma.c118 struct ata_device *pair = ata_dev_pair(adev); in optidma_mode_setup() local
153 if (pair) { in optidma_mode_setup()
156 if (ata_dma_enabled(pair)) in optidma_mode_setup()
159 pair_addr = addr_timing[pci_clock][pair->pio_mode - XFER_PIO_0]; in optidma_mode_setup()
/kernel/linux/linux-6.6/tools/perf/tests/
H A Dcpumap.c220 struct perf_cpu_map *pair = perf_cpu_map__new("1-2"); in test__cpu_map_equal() local
222 struct perf_cpu_map *maps[] = {empty, any, one, two, pair}; in test__cpu_map_equal()
237 TEST_ASSERT_VAL("pair", perf_cpu_map__equal(pair, tmp)); in test__cpu_map_equal()
240 tmp = perf_cpu_map__intersect(pair, one); in test__cpu_map_equal()
/kernel/linux/linux-6.6/samples/bpf/
H A Dsockex3_kern.c78 struct pair { struct
86 __type(value, struct pair);
93 struct pair *value; in update_stats()
100 struct pair val = {1, skb->len}; in update_stats()
/third_party/glslang/glslang/MachineIndependent/
H A Diomapper.h272 // pair& operator=(const pair<_Other1, _Other2>& _Right)
282 struct TVarLivePair : std::pair<const TString, TVarEntryInfo> {
283 TVarLivePair(const std::pair<const TString, TVarEntryInfo>& _Right) : pair(_Right.first, _Right.second) {} in TVarLivePair()
289 TVarLivePair(const TVarLivePair& src) : pair(src) { } in TVarLivePair()
/third_party/node/test/fixtures/wpt/streams/piping/
H A Dpipe-through.any.js284 function tryPipeThrough(pair, options)
287 if (!pair)
288 pair = {readable:new ReadableStream(), writable:new WritableStream()};
290 rs.pipeThrough(pair, options)
/third_party/node/deps/v8/src/heap/
H A Dscavenger.h28 using ObjectAndSize = std::pair<HeapObject, int>;
31 using SurvivingNewLargeObjectMapEntry = std::pair<HeapObject, Map>;
273 std::vector<std::pair<ParallelWorkItem, MemoryChunk*>> memory_chunks,
287 std::vector<std::pair<ParallelWorkItem, MemoryChunk*>> memory_chunks_;
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A DCommon.h83 class TUnorderedMap : public std::unordered_map<K, D, H, CMP, pool_allocator<std::pair<const K, D>>>
87 typedef pool_allocator<std::pair<const K, D>> tAllocator;
99 class TMap : public std::map<K, D, CMP, pool_allocator<std::pair<const K, D>>>
103 typedef pool_allocator<std::pair<const K, D>> tAllocator;

Completed in 30 milliseconds

1...<<11121314151617181920>>...99