HomeSort by relevance Sort by last modified time
    Searched full:scratch1 (Results 1 - 25 of 130) sorted by null

1 2 3 4 5 6

  /external/libvpx/libvpx/vpx_dsp/mips/
convolve2_avg_dspr2.c 32 uint32_t scratch1, scratch2; local
62 "preceu.ph.qbr %[scratch1], %[load1] \n\t"
64 "precrq.ph.w %[p2], %[p1], %[scratch1] \n\t" /* pixel 2 */
65 "append %[p1], %[scratch1], 16 \n\t" /* pixel 1 */
70 "preceu.ph.qbl %[scratch1], %[load1] \n\t"
72 "precrq.ph.w %[p2], %[p1], %[scratch1] \n\t" /* pixel 2 */
73 "append %[p1], %[scratch1], 16 \n\t" /* pixel 1 */
81 "lbu %[scratch1], 0(%[dst_ptr]) \n\t"
85 "addqh_r.w %[store1], %[store1], %[scratch1] \n\t" /* pixel 1 */
91 "lbu %[scratch1], 2(%[dst_ptr]) \n\t
131 uint32_t scratch1, scratch2; local
    [all...]
convolve2_vert_dspr2.c 32 uint32_t scratch1; local
62 "preceu.ph.qbr %[scratch1], %[load1] \n\t"
65 "precrq.ph.w %[p2], %[p1], %[scratch1] \n\t" /* pixel 2 */
66 "append %[p1], %[scratch1], 16 \n\t" /* pixel 1 */
71 "preceu.ph.qbl %[scratch1], %[load1] \n\t"
74 "precrq.ph.w %[p2], %[p1], %[scratch1] \n\t" /* pixel 2 */
75 "append %[p1], %[scratch1], 16 \n\t" /* pixel 1 */
99 [p2] "=&r"(p2), [scratch1] "=&r"(scratch1), [Temp1] "=&r"(Temp1),
122 uint32_t scratch1; local
    [all...]
convolve8_vert_dspr2.c 33 uint32_t scratch1, scratch2; local
71 "preceu.ph.qbr %[scratch1], %[load1] \n\t"
73 "precrq.ph.w %[n1], %[p1], %[scratch1] \n\t" /* pixel 2 */
74 "append %[p1], %[scratch1], 16 \n\t" /* pixel 1 */
85 "preceu.ph.qbl %[scratch1], %[load1] \n\t"
87 "precrq.ph.w %[n1], %[p1], %[scratch1] \n\t" /* pixel 2 */
88 "append %[p1], %[scratch1], 16 \n\t" /* pixel 1 */
108 "preceu.ph.qbr %[scratch1], %[load1] \n\t"
110 "precrq.ph.w %[n1], %[p1], %[scratch1] \n\t" /* pixel 2 */
111 "append %[p1], %[scratch1], 16 \n\t" /* pixel 1 *
181 uint32_t scratch1, scratch2; local
    [all...]
convolve8_avg_dspr2.c 33 uint32_t scratch1, scratch2; local
71 "preceu.ph.qbr %[scratch1], %[load1] \n\t"
73 "precrq.ph.w %[n1], %[p1], %[scratch1] \n\t" /* pixel 2 */
74 "append %[p1], %[scratch1], 16 \n\t" /* pixel 1 */
85 "preceu.ph.qbl %[scratch1], %[load1] \n\t"
87 "precrq.ph.w %[n1], %[p1], %[scratch1] \n\t" /* pixel 2 */
88 "append %[p1], %[scratch1], 16 \n\t" /* pixel 1 */
108 "preceu.ph.qbr %[scratch1], %[load1] \n\t"
110 "precrq.ph.w %[n1], %[p1], %[scratch1] \n\t" /* pixel 2 */
111 "append %[p1], %[scratch1], 16 \n\t" /* pixel 1 *
189 uint32_t scratch1, scratch2; local
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
batch_norm_op.h 83 typename TTypes<T>::Vec dg, typename TTypes<T>::Vec scratch1,
116 // scratch1 = rsqrt(v + epsilon)
117 scratch1.device(d) = (var + var.constant(variance_epsilon)).rsqrt();
127 out_backprop.reshape(rest_by_depth) * ((scratch1 * gamma)
131 dm.device(d) = -db * (scratch1 * gamma).eval();
132 dg.device(d) = scratch2 * scratch1;
136 scratch1.reshape(one_by_depth).broadcast(rest_by_one);
137 dm.device(d) = -db * scratch1;
141 // scratch1 = - 1/2 * (var + epsilon) ^ (-3/2)
142 scratch1.device(d) = scratch1 * scratch1.constant(static_cast<T>(-0.5f))
    [all...]
fused_batch_norm_op.h 70 typename TTypes<U>::Vec scratch1,
108 // scratch1 = rsqrt(pop_var + epsilon)
109 scratch1.device(d) = (pop_var + pop_var.constant(epsilon)).rsqrt();
119 (y_backprop_rest_by_depth * ((scratch1 * scale)
124 scale_backprop.device(d) = scratch2 * scratch1;
  /external/v8/src/ic/arm/
access-compiler-arm.cc 26 // receiver, name, scratch1, scratch2, scratch3.
30 // receiver, name, scratch1, scratch2.
handler-compiler-arm.cc 140 Handle<Name> name, Register scratch0, Register scratch1) {
144 __ IncrementCounter(counters->negative_lookups(), 1, scratch0, scratch1);
145 __ IncrementCounter(counters->negative_lookups_miss(), 1, scratch0, scratch1);
153 Register map = scratch1;
179 masm, miss_label, &done, receiver, properties, name, scratch1);
181 __ DecrementCounter(counters->negative_lookups_miss(), 1, scratch0, scratch1);
324 Handle<WeakCell> native_context_cell, Register scratch1, Register scratch2,
328 __ ldr(scratch1, NativeContextMemOperand());
331 __ cmp(scratch1, scratch2);
337 __ ldr(scratch1,
401 GenerateDictionaryNegativeLookup(masm(), miss, reg, name, scratch1, local
    [all...]
  /external/v8/src/ic/ia32/
access-compiler-ia32.cc 25 // receiver, name, scratch1, scratch2, scratch3.
29 // receiver, name, scratch1, scratch2.
  /external/v8/src/ic/mips/
access-compiler-mips.cc 26 // receiver, name, scratch1, scratch2, scratch3.
30 // receiver, name, scratch1, scratch2.
handler-compiler-mips.cc 134 Handle<Name> name, Register scratch0, Register scratch1) {
138 __ IncrementCounter(counters->negative_lookups(), 1, scratch0, scratch1);
139 __ IncrementCounter(counters->negative_lookups_miss(), 1, scratch0, scratch1);
147 Register map = scratch1;
171 masm, miss_label, &done, receiver, properties, name, scratch1);
173 __ DecrementCounter(counters->negative_lookups_miss(), 1, scratch0, scratch1);
311 Handle<WeakCell> native_context_cell, Register scratch1, Register scratch2,
315 __ lw(scratch1, NativeContextMemOperand());
320 __ Branch(&done, eq, scratch1, Operand(scratch2));
323 __ lw(scratch1, ContextMemOperand(scratch1, Context::SECURITY_TOKEN_INDEX))
384 GenerateDictionaryNegativeLookup(masm(), miss, reg, name, scratch1, local
    [all...]
  /external/v8/src/ic/mips64/
access-compiler-mips64.cc 26 // receiver, name, scratch1, scratch2, scratch3.
30 // receiver, name, scratch1, scratch2.
handler-compiler-mips64.cc 134 Handle<Name> name, Register scratch0, Register scratch1) {
138 __ IncrementCounter(counters->negative_lookups(), 1, scratch0, scratch1);
139 __ IncrementCounter(counters->negative_lookups_miss(), 1, scratch0, scratch1);
147 Register map = scratch1;
171 masm, miss_label, &done, receiver, properties, name, scratch1);
173 __ DecrementCounter(counters->negative_lookups_miss(), 1, scratch0, scratch1);
311 Handle<WeakCell> native_context_cell, Register scratch1, Register scratch2,
315 __ ld(scratch1, NativeContextMemOperand());
320 __ Branch(&done, eq, scratch1, Operand(scratch2));
323 __ ld(scratch1, ContextMemOperand(scratch1, Context::SECURITY_TOKEN_INDEX))
384 GenerateDictionaryNegativeLookup(masm(), miss, reg, name, scratch1, local
    [all...]
  /external/v8/src/ic/ppc/
access-compiler-ppc.cc 26 // receiver, name, scratch1, scratch2, scratch3.
30 // receiver, name, scratch1, scratch2.
handler-compiler-ppc.cc 135 Handle<Name> name, Register scratch0, Register scratch1) {
139 __ IncrementCounter(counters->negative_lookups(), 1, scratch0, scratch1);
140 __ IncrementCounter(counters->negative_lookups_miss(), 1, scratch0, scratch1);
148 Register map = scratch1;
174 masm, miss_label, &done, receiver, properties, name, scratch1);
176 __ DecrementCounter(counters->negative_lookups_miss(), 1, scratch0, scratch1);
318 Handle<WeakCell> native_context_cell, Register scratch1, Register scratch2,
322 __ LoadP(scratch1, NativeContextMemOperand());
325 __ cmp(scratch1, scratch2);
331 __ LoadP(scratch1,
400 GenerateDictionaryNegativeLookup(masm(), miss, reg, name, scratch1, local
    [all...]
  /external/v8/src/ic/s390/
access-compiler-s390.cc 27 // receiver, name, scratch1, scratch2, scratch3.
31 // receiver, name, scratch1, scratch2.
handler-compiler-s390.cc 130 Handle<Name> name, Register scratch0, Register scratch1) {
134 __ IncrementCounter(counters->negative_lookups(), 1, scratch0, scratch1);
135 __ IncrementCounter(counters->negative_lookups_miss(), 1, scratch0, scratch1);
143 Register map = scratch1;
167 masm, miss_label, &done, receiver, properties, name, scratch1);
169 __ DecrementCounter(counters->negative_lookups_miss(), 1, scratch0, scratch1);
307 Handle<WeakCell> native_context_cell, Register scratch1, Register scratch2,
311 __ LoadP(scratch1, NativeContextMemOperand());
314 __ CmpP(scratch1, scratch2);
320 __ LoadP(scratch1,
384 GenerateDictionaryNegativeLookup(masm(), miss, reg, name, scratch1, local
    [all...]
  /external/v8/src/ic/x64/
access-compiler-x64.cc 26 // receiver, name, scratch1, scratch2, scratch3.
30 // receiver, name, scratch1, scratch2.
handler-compiler-x64.cc 49 Handle<Name> name, Register scratch0, Register scratch1) {
81 properties, name, scratch1);
316 Handle<WeakCell> native_context_cell, Register scratch1, Register scratch2,
320 __ movp(scratch1, NativeContextOperand());
323 __ cmpp(scratch1, scratch2);
329 __ movp(scratch1, ContextOperand(scratch1, Context::SECURITY_TOKEN_INDEX));
331 __ cmpp(scratch1, scratch2);
339 Register object_reg, Register holder_reg, Register scratch1,
345 DCHECK(!scratch1.is(object_reg) && !scratch1.is(holder_reg))
394 GenerateDictionaryNegativeLookup(masm(), miss, reg, name, scratch1, local
    [all...]
  /external/v8/src/ic/x87/
access-compiler-x87.cc 25 // receiver, name, scratch1, scratch2, scratch3.
29 // receiver, name, scratch1, scratch2.
  /external/v8/src/ic/arm64/
handler-compiler-arm64.cc 49 Handle<Name> name, Register scratch0, Register scratch1) {
50 DCHECK(!AreAliased(receiver, scratch0, scratch1));
53 __ IncrementCounter(counters->negative_lookups(), 1, scratch0, scratch1);
54 __ IncrementCounter(counters->negative_lookups_miss(), 1, scratch0, scratch1);
62 Register map = scratch1;
81 masm, miss_label, &done, receiver, properties, name, scratch1);
83 __ DecrementCounter(counters->negative_lookups_miss(), 1, scratch0, scratch1);
350 Handle<WeakCell> native_context_cell, Register scratch1, Register scratch2,
354 __ Ldr(scratch1, NativeContextMemOperand());
357 __ Cmp(scratch1, scratch2)
427 GenerateDictionaryNegativeLookup(masm(), miss, reg, name, scratch1, local
    [all...]
access-compiler-arm64.cc 34 // receiver, name, scratch1, scratch2, scratch3.
38 // receiver, name, scratch1, scratch2.
  /external/libvpx/libvpx/vp8/common/x86/
loopfilter_block_sse2_x86_64.asm 18 movdqa scratch1, %2 ; v2
20 psubusb scratch1, %1 ; v2 - v1
22 por %1, scratch1 ; abs(v2 - v1)
72 movdqa scratch1, %1
73 psubsb scratch1, %4 ; signed_char_clamp(ps1 - qs1)
74 pandn scratch2, scratch1 ; vp8_filter &= hev
78 movdqa scratch1, %3
79 psubsb scratch1, %2 ; qs0 - ps0
80 paddsb scratch2, scratch1 ; vp8_filter += (qs0 - ps0)
81 paddsb scratch2, scratch1 ; vp8_filter += (qs0 - ps0
    [all...]
  /external/llvm/test/CodeGen/AMDGPU/
scratch-buffer.ll 20 %scratch1 = alloca [8192 x i32]
25 %scratchptr1 = getelementptr [8192 x i32], [8192 x i32]* %scratch1, i32 0, i32 0
37 %else_ptr = getelementptr [8192 x i32], [8192 x i32]* %scratch1, i32 0, i32 %else_offset
58 %scratch1 = alloca [8192 x i32]
66 %scratchptr1 = getelementptr [8192 x i32], [8192 x i32]* %scratch1, i32 0, i32 %offset1
78 %else_ptr = getelementptr [8192 x i32], [8192 x i32]* %scratch1, i32 0, i32 %else_offset
  /external/v8/src/ppc/
macro-assembler-ppc.cc     [all...]

Completed in 2476 milliseconds

1 2 3 4 5 6