Home | History | Annotate | Download | only in src

Lines Matching refs:ObjectPair

9298 struct ObjectPair {
9304 static inline ObjectPair MakePair(Object* x, Object* y) {
9305 ObjectPair result = {x, y};
9311 // For x32 a 128-bit struct return is done as rax and rdx from the ObjectPair
9314 struct ObjectPair {
9322 static inline ObjectPair MakePair(Object* x, Object* y) {
9323 ObjectPair result = {x, 0, y, 0};
9328 typedef uint64_t ObjectPair;
9329 static inline ObjectPair MakePair(Object* x, Object* y) {
9332 (reinterpret_cast<ObjectPair>(y) << 32);
9335 (reinterpret_cast<ObjectPair>(x) << 32);
9363 static ObjectPair LoadLookupSlotHelper(Arguments args, Isolate* isolate,
9908 static ObjectPair CompileGlobalEval(Isolate* isolate,