Searched refs:scratch2 (Results 1 - 25 of 109) sorted by relevance

12345

/external/libvpx/libvpx/vpx_dsp/mips/
H A Dconvolve2_avg_dspr2.c32 uint32_t scratch1, scratch2; local
82 "lbu %[scratch2], 1(%[dst_ptr]) \n\t"
89 "addqh_r.w %[store2], %[store2], %[scratch2] \n\t" /* pixel 2 */
95 "lbu %[scratch2], 3(%[dst_ptr]) \n\t"
100 "addqh_r.w %[store2], %[store2], %[scratch2] \n\t" /* pixel 4 */
107 [scratch2] "=&r"(scratch2), [Temp1] "=&r"(Temp1),
131 uint32_t scratch1, scratch2; local
182 "lbu %[scratch2], 1(%[dst_ptr]) \n\t"
189 "addqh_r.w %[store2], %[store2], %[scratch2] \
[all...]
H A Dconvolve8_vert_dspr2.c33 uint32_t scratch1, scratch2; local
75 "preceu.ph.qbr %[scratch2], %[load3] \n\t"
77 "precrq.ph.w %[n2], %[p2], %[scratch2] \n\t" /* pixel 2 */
78 "append %[p2], %[scratch2], 16 \n\t" /* pixel 1 */
89 "preceu.ph.qbl %[scratch2], %[load3] \n\t"
91 "precrq.ph.w %[n2], %[p2], %[scratch2] \n\t" /* pixel 2 */
92 "append %[p2], %[scratch2], 16 \n\t" /* pixel 1 */
112 "preceu.ph.qbr %[scratch2], %[load3] \n\t"
114 "precrq.ph.w %[n2], %[p2], %[scratch2] \n\t" /* pixel 2 */
115 "append %[p2], %[scratch2], 1
181 uint32_t scratch1, scratch2; local
[all...]
H A Dconvolve8_avg_dspr2.c33 uint32_t scratch1, scratch2; local
75 "preceu.ph.qbr %[scratch2], %[load3] \n\t"
77 "precrq.ph.w %[n2], %[p2], %[scratch2] \n\t" /* pixel 2 */
78 "append %[p2], %[scratch2], 16 \n\t" /* pixel 1 */
89 "preceu.ph.qbl %[scratch2], %[load3] \n\t"
91 "precrq.ph.w %[n2], %[p2], %[scratch2] \n\t" /* pixel 2 */
92 "append %[p2], %[scratch2], 16 \n\t" /* pixel 1 */
112 "preceu.ph.qbr %[scratch2], %[load3] \n\t"
114 "precrq.ph.w %[n2], %[p2], %[scratch2] \n\t" /* pixel 2 */
115 "append %[p2], %[scratch2], 1
189 uint32_t scratch1, scratch2; local
[all...]
/external/protobuf/src/google/protobuf/util/
H A Dfield_comparator.cc99 string scratch2; local
104 message_2, field, index_2, &scratch2)));
109 string scratch2; local
113 reflection_2->GetStringReference(message_2, field, &scratch2)));
/external/v8/src/ic/
H A Dhandler-compiler.cc57 GenerateAccessCheck(weak_cell, scratch1(), scratch2(), miss,
62 return CheckPrototypes(object_reg, scratch1(), scratch2(), scratch3(), name,
76 GenerateAccessCheck(weak_cell, scratch1(), scratch2(), miss, false);
79 return CheckPrototypes(object_reg, this->name(), scratch1(), scratch2(), name,
117 scratch2(), false, no_reg, holder, accessor_index);
128 PushVectorAndSlot(scratch2(), scratch3());
144 PopVectorAndSlot(scratch2(), scratch3());
300 receiver(), scratch2(), false, no_reg, reg,
310 expected_arguments, scratch2());
319 expected_arguments, scratch2());
[all...]
H A Daccess-compiler.h60 Register scratch2() const { return registers_[3]; } function in class:v8::internal::BASE_EMBEDDED
/external/v8/src/ic/x64/
H A Dhandler-compiler-x64.cc316 Handle<WeakCell> native_context_cell, Register scratch1, Register scratch2,
322 __ LoadWeakValue(scratch2, native_context_cell, miss);
323 __ cmpp(scratch1, scratch2);
330 __ movp(scratch2, ContextOperand(scratch2, Context::SECURITY_TOKEN_INDEX));
331 __ cmpp(scratch1, scratch2);
340 Register scratch2, Handle<Name> name, Label* miss,
346 DCHECK(!scratch2.is(object_reg) && !scratch2.is(holder_reg) &&
347 !scratch2
315 GenerateAccessCheck( Handle<WeakCell> native_context_cell, Register scratch1, Register scratch2, Label* miss, bool compare_native_contexts_only) argument
338 CheckPrototypes( Register object_reg, Register holder_reg, Register scratch1, Register scratch2, Handle<Name> name, Label* miss, ReturnHolder return_what) argument
381 name, scratch2, miss); local
395 scratch2); local
[all...]
/external/tensorflow/tensorflow/core/kernels/
H A Dbatch_norm_op.h84 typename TTypes<T>::Vec scratch2) {
119 // scratch2 = sum_over_rest(out_backprop * (x - m))
120 scratch2.device(d) = (out_backprop.reshape(rest_by_depth) *
132 dg.device(d) = scratch2 * scratch1;
146 dv.device(d) = scratch2 * (scratch1 * gamma).eval();
148 dv.device(d) = scratch2 * scratch1;
75 operator ()(const Device& d, typename TTypes<T, 4>::ConstTensor input, typename TTypes<T>::ConstVec mean, typename TTypes<T>::ConstVec var, typename TTypes<T>::ConstVec gamma, typename TTypes<T, 4>::ConstTensor out_backprop, T variance_epsilon, bool scale_after_normalization, typename TTypes<T, 4>::Tensor dx, typename TTypes<T>::Vec dm, typename TTypes<T>::Vec dv, typename TTypes<T>::Vec db, typename TTypes<T>::Vec dg, typename TTypes<T>::Vec scratch1, typename TTypes<T>::Vec scratch2) argument
H A Dfused_batch_norm_op.h71 typename TTypes<U>::Vec scratch2) {
111 // scratch2 = sum(y_backprop * (x - mean))
112 scratch2.device(d) =
124 scale_backprop.device(d) = scratch2 * scratch1;
64 operator ()(const Device& d, const Tensor& y_backprop_input, const Tensor& x_input, const Tensor& scale_input, const Tensor& pop_mean_input, const Tensor& pop_variance_input, U epsilon, Tensor* x_backprop_output, Tensor* scale_backprop_output, Tensor* offset_backprop_output, typename TTypes<U>::Vec scratch1, typename TTypes<U>::Vec scratch2) argument
H A Dbatch_norm_op.cc145 Tensor scratch2; variable
148 TensorShape({input.dim_size(3)}), &scratch2));
155 scratch1.vec<T>(), scratch2.vec<T>());
243 typename TTypes<T>::Vec scratch1, typename TTypes<T>::Vec scratch2); \
/external/v8/src/s390/
H A Dcode-stubs-s390.h21 Register scratch2,
28 Register scratch2);
347 Register scratch2);
357 Register scratch1, Register scratch2,
365 Register scratch1, Register scratch2,
394 Register scratch1, Register scratch2,
405 Register scratch1, Register scratch2,
447 Register scratch1, Register scratch2,
/external/v8/src/ic/arm64/
H A Dhandler-compiler-arm64.cc350 Handle<WeakCell> native_context_cell, Register scratch1, Register scratch2,
356 __ LoadWeakValue(scratch2, native_context_cell, miss);
357 __ Cmp(scratch1, scratch2);
365 __ Ldr(scratch2,
366 ContextMemOperand(scratch2, Context::SECURITY_TOKEN_INDEX));
367 __ Cmp(scratch1, scratch2);
376 Register scratch2, Handle<Name> name, Label* miss,
381 DCHECK(!AreAliased(object_reg, scratch1, scratch2));
382 DCHECK(!AreAliased(holder_reg, scratch1, scratch2));
415 name, scratch2, mis local
349 GenerateAccessCheck( Handle<WeakCell> native_context_cell, Register scratch1, Register scratch2, Label* miss, bool compare_native_contexts_only) argument
374 CheckPrototypes( Register object_reg, Register holder_reg, Register scratch1, Register scratch2, Handle<Name> name, Label* miss, ReturnHolder return_what) argument
428 scratch2); local
[all...]
/external/libvpx/libvpx/vp8/common/x86/
H A Dloopfilter_block_sse2_x86_64.asm31 movdqa scratch2, %3 ; save p1
32 LF_ABS scratch2, %4 ; abs(p1 - p0)
37 pmaxub %5, scratch2 ; accumulate hev
68 movdqa scratch2, %6 ; save hev
74 pandn scratch2, scratch1 ; vp8_filter &= hev
80 paddsb scratch2, scratch1 ; vp8_filter += (qs0 - ps0)
81 paddsb scratch2, scratch1 ; vp8_filter += (qs0 - ps0)
82 paddsb scratch2, scratch1 ; vp8_filter += (qs0 - ps0)
83 pand %5, scratch2 ; &= mask
85 movdqa scratch2,
[all...]
/external/v8/src/ic/arm/
H A Dhandler-compiler-arm.cc324 Handle<WeakCell> native_context_cell, Register scratch1, Register scratch2,
330 __ LoadWeakValue(scratch2, native_context_cell, miss);
331 __ cmp(scratch1, scratch2);
339 __ ldr(scratch2,
340 ContextMemOperand(scratch2, Context::SECURITY_TOKEN_INDEX));
341 __ cmp(scratch1, scratch2);
350 Register scratch2, Handle<Name> name, Label* miss,
356 DCHECK(!scratch2.is(object_reg) && !scratch2.is(holder_reg) &&
357 !scratch2
323 GenerateAccessCheck( Handle<WeakCell> native_context_cell, Register scratch1, Register scratch2, Label* miss, bool compare_native_contexts_only) argument
348 CheckPrototypes( Register object_reg, Register holder_reg, Register scratch1, Register scratch2, Handle<Name> name, Label* miss, ReturnHolder return_what) argument
388 name, scratch2, miss); local
402 scratch2); local
[all...]
/external/v8/src/ic/ia32/
H A Dhandler-compiler-ia32.cc326 Handle<WeakCell> native_context_cell, Register scratch1, Register scratch2,
332 __ LoadWeakValue(scratch2, native_context_cell, miss);
333 __ cmp(scratch1, scratch2);
340 __ mov(scratch2, ContextOperand(scratch2, Context::SECURITY_TOKEN_INDEX));
341 __ cmp(scratch1, scratch2);
350 Register scratch2, Handle<Name> name, Label* miss,
356 DCHECK(!scratch2.is(object_reg) && !scratch2.is(holder_reg) &&
357 !scratch2
325 GenerateAccessCheck( Handle<WeakCell> native_context_cell, Register scratch1, Register scratch2, Label* miss, bool compare_native_contexts_only) argument
348 CheckPrototypes( Register object_reg, Register holder_reg, Register scratch1, Register scratch2, Handle<Name> name, Label* miss, ReturnHolder return_what) argument
388 name, scratch2, miss); local
402 scratch2); local
[all...]
/external/v8/src/ic/mips/
H A Dhandler-compiler-mips.cc311 Handle<WeakCell> native_context_cell, Register scratch1, Register scratch2,
317 __ LoadWeakValue(scratch2, native_context_cell, miss);
320 __ Branch(&done, eq, scratch1, Operand(scratch2));
324 __ lw(scratch2, ContextMemOperand(scratch2, Context::SECURITY_TOKEN_INDEX));
326 __ Branch(miss, ne, scratch1, Operand(scratch2));
333 Register scratch2, Handle<Name> name, Label* miss,
339 DCHECK(!scratch2.is(object_reg) && !scratch2.is(holder_reg) &&
340 !scratch2
310 GenerateAccessCheck( Handle<WeakCell> native_context_cell, Register scratch1, Register scratch2, Label* miss, bool compare_native_contexts_only) argument
331 CheckPrototypes( Register object_reg, Register holder_reg, Register scratch1, Register scratch2, Handle<Name> name, Label* miss, ReturnHolder return_what) argument
371 name, scratch2, miss); local
385 scratch2); local
[all...]
/external/v8/src/ic/mips64/
H A Dhandler-compiler-mips64.cc311 Handle<WeakCell> native_context_cell, Register scratch1, Register scratch2,
317 __ LoadWeakValue(scratch2, native_context_cell, miss);
320 __ Branch(&done, eq, scratch1, Operand(scratch2));
324 __ ld(scratch2, ContextMemOperand(scratch2, Context::SECURITY_TOKEN_INDEX));
326 __ Branch(miss, ne, scratch1, Operand(scratch2));
333 Register scratch2, Handle<Name> name, Label* miss,
339 DCHECK(!scratch2.is(object_reg) && !scratch2.is(holder_reg) &&
340 !scratch2
310 GenerateAccessCheck( Handle<WeakCell> native_context_cell, Register scratch1, Register scratch2, Label* miss, bool compare_native_contexts_only) argument
331 CheckPrototypes( Register object_reg, Register holder_reg, Register scratch1, Register scratch2, Handle<Name> name, Label* miss, ReturnHolder return_what) argument
371 name, scratch2, miss); local
385 scratch2); local
[all...]
/external/v8/src/ic/ppc/
H A Dhandler-compiler-ppc.cc318 Handle<WeakCell> native_context_cell, Register scratch1, Register scratch2,
324 __ LoadWeakValue(scratch2, native_context_cell, miss);
325 __ cmp(scratch1, scratch2);
333 __ LoadP(scratch2,
334 ContextMemOperand(scratch2, Context::SECURITY_TOKEN_INDEX));
335 __ cmp(scratch1, scratch2);
344 Register scratch2, Handle<Name> name, Label* miss,
350 DCHECK(!scratch2.is(object_reg) && !scratch2.is(holder_reg) &&
351 !scratch2
317 GenerateAccessCheck( Handle<WeakCell> native_context_cell, Register scratch1, Register scratch2, Label* miss, bool compare_native_contexts_only) argument
342 CheckPrototypes( Register object_reg, Register holder_reg, Register scratch1, Register scratch2, Handle<Name> name, Label* miss, ReturnHolder return_what) argument
387 name, scratch2, miss); local
401 scratch2); local
[all...]
/external/v8/src/ic/s390/
H A Dhandler-compiler-s390.cc307 Handle<WeakCell> native_context_cell, Register scratch1, Register scratch2,
313 __ LoadWeakValue(scratch2, native_context_cell, miss);
314 __ CmpP(scratch1, scratch2);
322 __ LoadP(scratch2,
323 ContextMemOperand(scratch2, Context::SECURITY_TOKEN_INDEX));
324 __ CmpP(scratch1, scratch2);
333 Register scratch2, Handle<Name> name, Label* miss,
339 DCHECK(!scratch2.is(object_reg) && !scratch2.is(holder_reg) &&
340 !scratch2
306 GenerateAccessCheck( Handle<WeakCell> native_context_cell, Register scratch1, Register scratch2, Label* miss, bool compare_native_contexts_only) argument
331 CheckPrototypes( Register object_reg, Register holder_reg, Register scratch1, Register scratch2, Handle<Name> name, Label* miss, ReturnHolder return_what) argument
371 name, scratch2, miss); local
385 scratch2); local
[all...]
/external/v8/src/ic/x87/
H A Dhandler-compiler-x87.cc326 Handle<WeakCell> native_context_cell, Register scratch1, Register scratch2,
332 __ LoadWeakValue(scratch2, native_context_cell, miss);
333 __ cmp(scratch1, scratch2);
340 __ mov(scratch2, ContextOperand(scratch2, Context::SECURITY_TOKEN_INDEX));
341 __ cmp(scratch1, scratch2);
350 Register scratch2, Handle<Name> name, Label* miss,
356 DCHECK(!scratch2.is(object_reg) && !scratch2.is(holder_reg) &&
357 !scratch2
325 GenerateAccessCheck( Handle<WeakCell> native_context_cell, Register scratch1, Register scratch2, Label* miss, bool compare_native_contexts_only) argument
348 CheckPrototypes( Register object_reg, Register holder_reg, Register scratch1, Register scratch2, Handle<Name> name, Label* miss, ReturnHolder return_what) argument
388 name, scratch2, miss); local
402 scratch2); local
[all...]
/external/v8/src/arm64/
H A Dcode-stubs-arm64.h20 Register scratch2, Register scratch3, Register scratch4);
26 Register scratch2,
32 Register scratch1, Register scratch2, Label* chars_not_equal);
241 Register scratch2() { return scratch2_; } function in class:v8::internal::RecordWriteStub::RegisterAllocation
H A Dmacro-assembler-arm64.cc1471 Register scratch1, Register scratch2,
1474 DCHECK(!AreAliased(object, scratch0, scratch1, scratch2, scratch3, scratch4));
1487 Register map = scratch2;
1528 Register scratch2,
1543 Mov(scratch2, new_space_allocation_top_adr);
1544 Ldr(scratch2, MemOperand(scratch2));
1545 Eor(scratch2, scratch1, scratch2);
1546 Tst(scratch2, ~Pag
1470 CheckEnumCache(Register object, Register scratch0, Register scratch1, Register scratch2, Register scratch3, Register scratch4, Label* call_runtime) argument
1526 TestJSArrayForAllocationMemento(Register receiver, Register scratch1, Register scratch2, Label* no_memento_found) argument
2189 JumpIfBothInstanceTypesAreNotSequentialOneByte( Register first, Register second, Register scratch1, Register scratch2, Label* failure) argument
2838 SetCounter(StatsCounter* counter, int value, Register scratch1, Register scratch2) argument
2848 IncrementCounter(StatsCounter* counter, int value, Register scratch1, Register scratch2) argument
2860 DecrementCounter(StatsCounter* counter, int value, Register scratch1, Register scratch2) argument
2920 Allocate(int object_size, Register result, Register scratch1, Register scratch2, Label* gc_required, AllocationFlags flags) argument
3017 Register scratch2 = temps.AcquireX(); local
3082 FastAllocate(int object_size, Register result, Register scratch1, Register scratch2, AllocationFlags flags) argument
3155 AllocateHeapNumber(Register result, Label* gc_required, Register scratch1, Register scratch2, CPURegister value, CPURegister heap_number_map, MutableMode mode) argument
3222 AllocateJSValue(Register result, Register constructor, Register value, Register scratch1, Register scratch2, Label* gc_required) argument
3334 DispatchWeakMap(Register obj, Register scratch1, Register scratch2, Handle<WeakCell> cell, Handle<Code> success, SmiCheckType smi_check_type) argument
3621 Register scratch2 = temps.AcquireX(); local
[all...]
/external/v8/src/arm/
H A Dmacro-assembler-arm.cc1977 Register scratch2,
1987 mov(scratch2, Operand(0x7291));
1993 DCHECK(!AreAliased(result, scratch1, scratch2, ip));
2020 Register result_end = scratch2;
2231 Register scratch1, Register scratch2,
2234 DCHECK(!AreAliased(result, scratch1, scratch2, ip));
2247 Register result_end = scratch2;
2368 Register scratch2, Handle<WeakCell> cell,
2376 CmpWeakValue(scratch1, cell, scratch2);
2665 Register scratch1, Register scratch2) {
3009 JumpIfNonSmisNotBothSequentialOneByteStrings( Register first, Register second, Register scratch1, Register scratch2, Label* failure) argument
3023 JumpIfNotBothSequentialOneByteStrings(Register first, Register second, Register scratch1, Register scratch2, Label* failure) argument
3051 AllocateHeapNumber(Register result, Register scratch1, Register scratch2, Register heap_number_map, Label* gc_required, MutableMode mode) argument
3072 AllocateHeapNumberWithValue(Register result, DwVfpRegister value, Register scratch1, Register scratch2, Register heap_number_map, Label* gc_required) argument
3084 AllocateJSValue(Register result, Register constructor, Register value, Register scratch1, Register scratch2, Label* gc_required) argument
3282 JumpIfBothInstanceTypesAreNotSequentialOneByte( Register first, Register second, Register scratch1, Register scratch2, Label* failure) argument
[all...]
H A Dcode-stubs-arm.h22 Register scratch2, Register scratch3, Register scratch4);
28 Register scratch2,
34 Register scratch1, Register scratch2, Label* chars_not_equal);
/external/v8/src/builtins/arm64/
H A Dbuiltins-arm64.cc1721 Register scratch2,
1725 Register constructor = scratch2;
1965 Register scratch2 = x11; local
1988 __ Add(scratch2, jssp, Operand(argc, LSL, kPointerSizeLog2));
1989 __ Sub(scratch1, scratch2, kPointerSize);
1993 __ Str(x12, MemOperand(scratch2, -kPointerSize, PostIndex));
2458 Register scratch1, Register scratch2,
2460 DCHECK(!AreAliased(args_reg, scratch1, scratch2, scratch3));
2487 __ Ldr(scratch2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
2489 MemOperand(scratch2, CommonFrameConstant
1718 CompatibleReceiverCheck(MacroAssembler* masm, Register receiver, Register function_template_info, Register scratch0, Register scratch1, Register scratch2, Label* receiver_check_failed) argument
2457 PrepareForTailCall(MacroAssembler* masm, Register args_reg, Register scratch1, Register scratch2, Register scratch3) argument
2800 Register scratch2 = x6; local
3145 Register scratch1 = x13, scratch2 = x14; local
3184 Register scratch1 = x13, scratch2 = x14; local
[all...]

Completed in 799 milliseconds

12345