/third_party/node/deps/v8/src/codegen/ |
D | external-reference.cc | 1149 static void atomic_pair_store(intptr_t address, int value_low, int value_high) { in atomic_pair_store() argument 1151 static_cast<int64_t>(value_high) << 32 | (value_low & 0xFFFFFFFF); in atomic_pair_store() 1160 int value_high) { in atomic_pair_add() argument 1162 static_cast<int64_t>(value_high) << 32 | (value_low & 0xFFFFFFFF); in atomic_pair_add() 1172 int value_high) { in atomic_pair_sub() argument 1174 static_cast<int64_t>(value_high) << 32 | (value_low & 0xFFFFFFFF); in atomic_pair_sub() 1184 int value_high) { in atomic_pair_and() argument 1186 static_cast<int64_t>(value_high) << 32 | (value_low & 0xFFFFFFFF); in atomic_pair_and() 1195 static int64_t atomic_pair_or(intptr_t address, int value_low, int value_high) { in atomic_pair_or() argument 1197 static_cast<int64_t>(value_high) << 32 | (value_low & 0xFFFFFFFF); in atomic_pair_or() [all …]
|
/third_party/node/deps/v8/src/compiler/ |
D | raw-machine-assembler.h | 260 #define VALUE_HALVES value_high, value 262 #define VALUE_HALVES value, value_high 273 Node* value, Node* value_high) { in AtomicStore64() argument 275 DCHECK_NULL(value_high); in AtomicStore64() 292 Node * value_high) { \ 294 DCHECK_NULL(value_high); \
|
D | code-assembler.cc | 885 TNode<UintPtrT> value_high) { in AtomicStore64() argument 889 base, offset, value, value_high); in AtomicStore64() 902 TNode<UintPtrT> value_high) { \ 904 raw_assembler()->Atomic##name##64(base, offset, value, value_high)); \ 908 TNode<UintPtrT> value_high); \ 911 TNode<UintPtrT> value, TNode<UintPtrT> value_high);
|
D | code-assembler.h | 823 TNode<UintPtrT> value_high); 829 TNode<UintPtrT> value, TNode<UintPtrT> value_high); 835 TNode<UintPtrT> value, TNode<UintPtrT> value_high); 841 TNode<UintPtrT> value, TNode<UintPtrT> value_high); 847 TNode<UintPtrT> value, TNode<UintPtrT> value_high); 853 TNode<UintPtrT> value, TNode<UintPtrT> value_high); 861 TNode<UintPtrT> value_high);
|
/third_party/node/deps/v8/src/compiler/backend/arm/ |
D | instruction-selector-arm.cc | 460 Node* value_high = node->InputAt(3); in VisitPairAtomicBinOp() local 464 g.UseUniqueRegister(value), g.UseUniqueRegister(value_high), in VisitPairAtomicBinOp() 2470 Node* value_high = node->InputAt(3); in VisitWord32AtomicPairStore() local 2474 g.UseFixed(value_low, r2), g.UseFixed(value_high, r3)}; in VisitWord32AtomicPairStore() 2507 Node* value_high = node->InputAt(3); in VisitWord32AtomicPairExchange() local 2510 g.UseFixed(value, r0), g.UseFixed(value_high, r1), in VisitWord32AtomicPairExchange()
|
D | code-generator-arm.cc | 3456 Register value_high = i.InputRegister(3); in AssembleArchInstruction() local 3470 __ strexd(store_result, value_low, value_high, actual_addr); in AssembleArchInstruction()
|
/third_party/pulseaudio/src/modules/alsa/ |
D | alsa-mixer.c | 1114 long value_high; in element_get_nearest_alsa_dB() local 1123 r = snd_mixer_selem_ask_playback_vol_dB(me, alsa_val, &value_high); in element_get_nearest_alsa_dB() 1128 if (value_high == *value_dB) in element_get_nearest_alsa_dB() 1135 r = snd_mixer_selem_ask_capture_vol_dB(me, alsa_val, &value_high); in element_get_nearest_alsa_dB() 1140 if (value_high == *value_dB) in element_get_nearest_alsa_dB() 1150 if (labs(value_high - *value_dB) < labs(value_low - *value_dB)) in element_get_nearest_alsa_dB() 1151 *value_dB = value_high; in element_get_nearest_alsa_dB()
|
/third_party/node/deps/v8/src/compiler/backend/ia32/ |
D | instruction-selector-ia32.cc | 1737 Node* value_high = node->InputAt(3); in VisitPairAtomicBinOp() local 1743 g.UseUniqueRegisterOrSlotOrConstant(value), g.UseFixed(value_high, ecx), in VisitPairAtomicBinOp() 2174 Node* value_high = node->InputAt(3); in VisitWord32AtomicPairStore() local 2181 g.UseUniqueRegisterOrSlotOrConstant(value_high), in VisitWord32AtomicPairStore() 2193 g.UseUniqueRegisterOrSlotOrConstant(value), g.UseFixed(value_high, ecx), in VisitWord32AtomicPairStore()
|
/third_party/node/deps/v8/src/compiler/backend/mips/ |
D | instruction-selector-mips.cc | 243 Node* value_high = node->InputAt(3); in VisitPairAtomicBinop() local 248 g.UseFixed(value_high, a2)}; in VisitPairAtomicBinop() 774 Node* value_high = node->InputAt(3); in VisitWord32AtomicPairStore() local 778 g.UseFixed(value_high, a2)}; in VisitWord32AtomicPairStore()
|
/third_party/node/deps/v8/src/wasm/baseline/arm/ |
D | liftoff-assembler-arm.h | 1003 Register value_high = value.high_gp(); in AtomicOp64() local 1005 value_high, dst_low, dst_high}; in AtomicOp64() 1006 __ ClearRegister(dst_low, {&dst_addr, &offset_reg, &value_low, &value_high}, in AtomicOp64() 1008 pinned = pinned | LiftoffRegList{dst_addr, offset_reg, value_low, value_high}; in AtomicOp64() 1009 __ ClearRegister(dst_high, {&dst_addr, &offset_reg, &value_low, &value_high}, in AtomicOp64() 1011 pinned = pinned | LiftoffRegList{dst_addr, offset_reg, value_low, value_high}; in AtomicOp64() 1052 LiftoffRegister::ForPair(value_low, value_high)); in AtomicOp64()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/DartARM32/ |
D | assembler_arm.cc | 2642 const uint16_t value_high = Utils::High16Bits(value); in LoadPatchableImmediate() local 2644 movt(rd, value_high, cond); in LoadPatchableImmediate() 2661 const uint16_t value_high = Utils::High16Bits(value); in LoadDecodableImmediate() local 2662 if (value_high != 0) { in LoadDecodableImmediate() 2663 movt(rd, value_high, cond); in LoadDecodableImmediate()
|
/third_party/node/deps/v8/src/builtins/ |
D | builtins-sharedarraybuffer-gen.cc | 26 TNode<UintPtrT> value_high);
|