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

1 2 3

  /device/google/contexthub/firmware/os/cpu/cortexm4/
atomicBitset.c 87 uint32_t scratch1, scratch2, scratch3, bit = 32; local
105 :"=r"(scratch1), "=r"(bit), "=r"(scratch2), "=l"(scratch3), "=r"(wordPtr)
  /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_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...]
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...]
  /external/protobuf/src/google/protobuf/util/
field_comparator.cc 98 string scratch1; local
102 message_1, field, index_1, &scratch1),
108 string scratch1; local
112 reflection_1->GetStringReference(message_1, field, &scratch1),
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
batch_norm_op.cc 172 // scratch1 = rsqrt(pop_var + epsilon)
174 auto scratch1 = variable
184 b->Mul(grad_backprop, b->Mul(scratch1, scale), {feature_index});
185 scale_backprop = b->Mul(scratch1, scratch2);
  /external/v8/src/ic/
access-compiler.h 59 Register scratch1() const { return registers_[2]; } function in class:v8::internal::BASE_EMBEDDED
  /external/tensorflow/tensorflow/core/kernels/
batch_norm_op.cc 138 Tensor scratch1; variable
141 TensorShape({input.dim_size(3)}), &scratch1));
155 scratch1.vec<T>(), scratch2.vec<T>());
243 typename TTypes<T>::Vec scratch1, typename TTypes<T>::Vec scratch2); \
  /external/libopus/celt/
kiss_fft.c 120 kiss_fft_cpx scratch0, scratch1; local
124 C_ADD( scratch1 , Fout[1] , Fout[3] );
125 C_SUB( Fout[2], *Fout, scratch1 );
126 C_ADDTO( *Fout , scratch1 );
127 C_SUB( scratch1 , Fout[1] , Fout[3] );
129 Fout[1].r = ADD32_ovflw(scratch0.r, scratch1.i);
130 Fout[1].i = SUB32_ovflw(scratch0.i, scratch1.r);
131 Fout[3].r = SUB32_ovflw(scratch0.r, scratch1.i);
132 Fout[3].i = ADD32_ovflw(scratch0.i, scratch1.r);
  /external/v8/src/arm/
code-stubs-arm.h 21 MacroAssembler* masm, Register left, Register right, Register scratch1,
27 Register scratch1,
34 Register scratch1, Register scratch2, Label* chars_not_equal);
174 inline Register scratch1() { return scratch1_; } function in class:v8::internal::RecordWriteStub::RegisterAllocation
  /external/v8/src/arm64/
code-stubs-arm64.h 19 MacroAssembler* masm, Register left, Register right, Register scratch1,
25 Register scratch1,
32 Register scratch1, Register scratch2, Label* chars_not_equal);
240 Register scratch1() { return scratch1_; } function in class:v8::internal::RecordWriteStub::RegisterAllocation
  /external/v8/src/crankshaft/mips/
lithium-codegen-mips.h 140 Register scratch1() { return kLithiumScratchReg2; } function in class:v8::internal::LCodeGen
213 void PrepareForTailCall(const ParameterCount& actual, Register scratch1,
  /external/v8/src/crankshaft/mips64/
lithium-codegen-mips64.h 142 Register scratch1() { return kLithiumScratchReg2; } function in class:v8::internal::LCodeGen
215 void PrepareForTailCall(const ParameterCount& actual, Register scratch1,
  /external/v8/src/ic/arm/
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/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...]
  /external/v8/src/ic/ia32/
handler-compiler-ia32.cc 88 Handle<Name> name, Register scratch0, Register scratch1) {
120 properties, name, scratch1);
326 Handle<WeakCell> native_context_cell, Register scratch1, Register scratch2,
330 __ mov(scratch1, NativeContextOperand());
333 __ cmp(scratch1, scratch2);
339 __ mov(scratch1, ContextOperand(scratch1, Context::SECURITY_TOKEN_INDEX));
341 __ cmp(scratch1, scratch2);
349 Register object_reg, Register holder_reg, Register scratch1,
355 DCHECK(!scratch1.is(object_reg) && !scratch1.is(holder_reg))
401 GenerateDictionaryNegativeLookup(masm(), miss, reg, name, scratch1, local
    [all...]
  /external/v8/src/ic/mips/
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/
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/
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/
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/
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/
handler-compiler-x87.cc 88 Handle<Name> name, Register scratch0, Register scratch1) {
120 properties, name, scratch1);
326 Handle<WeakCell> native_context_cell, Register scratch1, Register scratch2,
330 __ mov(scratch1, NativeContextOperand());
333 __ cmp(scratch1, scratch2);
339 __ mov(scratch1, ContextOperand(scratch1, Context::SECURITY_TOKEN_INDEX));
341 __ cmp(scratch1, scratch2);
349 Register object_reg, Register holder_reg, Register scratch1,
355 DCHECK(!scratch1.is(object_reg) && !scratch1.is(holder_reg))
401 GenerateDictionaryNegativeLookup(masm(), miss, reg, name, scratch1, local
    [all...]
  /external/v8/src/mips/
code-stubs-mips.h 21 MacroAssembler* masm, Register left, Register right, Register scratch1,
27 Register scratch1,
34 Register scratch1, Register scratch2, Register scratch3,
205 inline Register scratch1() { return scratch1_; } function in class:v8::internal::RecordWriteStub::RegisterAllocation
  /external/v8/src/mips64/
code-stubs-mips64.h 21 MacroAssembler* masm, Register left, Register right, Register scratch1,
27 Register scratch1,
34 Register scratch1, Register scratch2, Register scratch3,
206 inline Register scratch1() { return scratch1_; } function in class:v8::internal::RecordWriteStub::RegisterAllocation

Completed in 590 milliseconds

1 2 3