HomeSort by relevance Sort by last modified time
    Searched refs:scratch (Results 26 - 50 of 289) sorted by null

12 3 4 5 6 7 8 91011>>

  /art/compiler/utils/
swap_space_test.cc 35 ScratchFile scratch; local
36 int fd = scratch.GetFd();
37 unlink(scratch.GetFilename().c_str());
70 scratch.Close();
assembler.cc 128 ManagedRegister scratch) {
133 ManagedRegister scratch) {
139 ManagedRegister scratch) {
145 ManagedRegister scratch) {
174 ManagedRegister scratch) {
179 ManagedRegister scratch) {
184 ManagedRegister scratch) {
189 ManagedRegister scratch) {
193 void Assembler::CallFromThread32(ThreadOffset<4> offset, ManagedRegister scratch) {
197 void Assembler::CallFromThread64(ThreadOffset<8> offset, ManagedRegister scratch) {
    [all...]
assembler.h 388 ManagedRegister scratch) = 0;
391 ManagedRegister scratch);
393 ManagedRegister scratch);
397 ManagedRegister scratch);
400 ManagedRegister scratch);
406 FrameOffset in_off, ManagedRegister scratch) = 0;
426 ManagedRegister scratch);
428 ManagedRegister scratch);
431 ManagedRegister scratch);
433 ManagedRegister scratch);
    [all...]
  /external/ceres-solver/internal/ceres/
incomplete_lq_factorization.h 78 // scratch is used to prevent allocations inside this function. It is
79 // assumed that scratch is of size matrix->num_cols().
84 vector<pair<int, double> >* scratch,
incomplete_lq_factorization.cc 117 vector<pair<int, double> >* scratch,
136 pair<int, double>& entry = (*scratch)[scratch_count];
144 nth_element(scratch->begin(),
145 scratch->begin() + level_of_fill,
146 scratch->begin() + scratch_count,
149 sort(scratch->begin(), scratch->begin() + scratch_count);
153 const pair<int, double>& entry = (*scratch)[i];
195 vector<pair<int, double> > scratch(num_cols);
206 &scratch,
    [all...]
residual_block_test.cc 76 double scratch[64]; local
108 residual_block.Evaluate(true, &cost, NULL, NULL, scratch);
113 residual_block.Evaluate(true, &cost, residuals, NULL, scratch);
137 residual_block.Evaluate(true, &cost, residuals, jacobian_ptrs, scratch);
156 residual_block.Evaluate(true, &cost, residuals, jacobian_ptrs, scratch);
203 double scratch[64]; local
247 residual_block.Evaluate(true, &cost, NULL, NULL, scratch);
252 residual_block.Evaluate(true, &cost, residuals, NULL, scratch);
276 residual_block.Evaluate(true, &cost, residuals, jacobian_ptrs, scratch);
314 residual_block.Evaluate(true, &cost, residuals, jacobian_ptrs, scratch);
    [all...]
  /external/chromium_org/third_party/icu/source/common/
bytestream.cpp 17 char* scratch, int32_t scratch_capacity,
24 return scratch;
60 char* scratch,
73 return scratch;
appendable.cpp 60 UChar *scratch, int32_t scratchCapacity,
67 return scratch;
  /external/chromium_org/third_party/leveldatabase/src/db/
log_reader.cc 59 bool Reader::ReadRecord(Slice* record, std::string* scratch) {
66 scratch->clear();
84 if (scratch->empty()) {
87 ReportCorruption(scratch->size(), "partial record without end(1)");
91 scratch->clear();
102 if (scratch->empty()) {
105 ReportCorruption(scratch->size(), "partial record without end(2)");
109 scratch->assign(fragment.data(), fragment.size());
118 scratch->append(fragment.data(), fragment.size());
127 scratch->append(fragment.data(), fragment.size())
    [all...]
  /external/icu/icu4c/source/common/
bytestream.cpp 17 char* scratch, int32_t scratch_capacity,
24 return scratch;
60 char* scratch,
73 return scratch;
appendable.cpp 60 UChar *scratch, int32_t scratchCapacity,
67 return scratch;
  /art/compiler/utils/mips/
assembler_mips.cc 632 MipsManagedRegister scratch = mscratch.AsMips(); local
633 CHECK(scratch.IsCoreRegister()) << scratch;
634 LoadImmediate(scratch.AsCoreRegister(), imm);
635 StoreToOffset(kStoreWord, scratch.AsCoreRegister(), SP, dest.Int32Value());
640 MipsManagedRegister scratch = mscratch.AsMips(); local
641 CHECK(scratch.IsCoreRegister()) << scratch;
642 LoadImmediate(scratch.AsCoreRegister(), imm);
643 StoreToOffset(kStoreWord, scratch.AsCoreRegister(), S1, dest.Int32Value())
649 MipsManagedRegister scratch = mscratch.AsMips(); local
663 MipsManagedRegister scratch = mscratch.AsMips(); local
747 MipsManagedRegister scratch = mscratch.AsMips(); local
756 MipsManagedRegister scratch = mscratch.AsMips(); local
767 MipsManagedRegister scratch = mscratch.AsMips(); local
777 MipsManagedRegister scratch = mscratch.AsMips(); local
793 Register scratch = mscratch.AsMips().AsCoreRegister(); local
801 Register scratch = mscratch.AsMips().AsCoreRegister(); local
816 Register scratch = mscratch.AsMips().AsCoreRegister(); local
862 MipsManagedRegister scratch = mscratch.AsMips(); local
907 MipsManagedRegister scratch = mscratch.AsMips(); local
917 MipsManagedRegister scratch = mscratch.AsMips(); local
942 MipsManagedRegister scratch = mscratch.AsMips(); local
    [all...]
  /external/openssl/crypto/modes/
ccm128.c 179 union { u64 u[2]; u8 c[16]; } scratch; local
211 (*block)(ctx->nonce.c,scratch.c,key);
214 temp.u[0] ^= scratch.u[0];
215 temp.u[1] ^= scratch.u[1];
218 ((u64*)out)[0] = scratch.u[0]^((u64*)inp)[0];
219 ((u64*)out)[1] = scratch.u[1]^((u64*)inp)[1];
229 (*block)(ctx->nonce.c,scratch.c,key);
230 for (i=0; i<len; ++i) out[i] = scratch.c[i]^inp[i];
236 (*block)(ctx->nonce.c,scratch.c,key);
237 ctx->cmac.u[0] ^= scratch.u[0]
254 union { u64 u[2]; u8 c[16]; } scratch; local
333 union { u64 u[2]; u8 c[16]; } scratch; local
390 union { u64 u[2]; u8 c[16]; } scratch; local
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/helpers/memenv/
memenv_test.cc 92 char scratch[100]; local
103 ASSERT_OK(seq_file->Read(5, &result, scratch)); // Read "hello".
106 ASSERT_OK(seq_file->Read(1000, &result, scratch)); // Read "world".
108 ASSERT_OK(seq_file->Read(1000, &result, scratch)); // Try reading past EOF.
111 ASSERT_OK(seq_file->Read(1000, &result, scratch));
117 ASSERT_OK(rand_file->Read(6, 5, &result, scratch)); // Read "world".
119 ASSERT_OK(rand_file->Read(0, 5, &result, scratch)); // Read "hello".
121 ASSERT_OK(rand_file->Read(10, 100, &result, scratch)); // Read "d".
125 ASSERT_TRUE(!rand_file->Read(1000, 5, &result, scratch).ok());
154 char* scratch = new char[kWriteSize * 2] local
    [all...]
  /external/aac/libFDK/src/mips/
fft_rad2_mips.cpp 109 int32c scratch[1024]; local
124 mips_fft32(dout, din, twiddles, scratch, ldn);
  /external/chromium_org/third_party/icu/source/common/unicode/
appendable.h 98 * May return a pointer to the caller-owned scratch buffer which must have
122 * If a non-scratch buffer is returned, the caller may only pass
126 * The default implementation always returns the scratch buffer.
132 * @param scratch default caller-owned buffer
133 * @param scratchCapacity capacity of the scratch buffer
141 UChar *scratch, int32_t scratchCapacity,
203 * May return a pointer to the caller-owned scratch buffer which must have
214 * @param scratch default caller-owned buffer
215 * @param scratchCapacity capacity of the scratch buffer
223 UChar *scratch, int32_t scratchCapacity
    [all...]
  /external/icu/icu4c/source/common/unicode/
appendable.h 98 * May return a pointer to the caller-owned scratch buffer which must have
122 * If a non-scratch buffer is returned, the caller may only pass
126 * The default implementation always returns the scratch buffer.
132 * @param scratch default caller-owned buffer
133 * @param scratchCapacity capacity of the scratch buffer
141 UChar *scratch, int32_t scratchCapacity,
203 * May return a pointer to the caller-owned scratch buffer which must have
214 * @param scratch default caller-owned buffer
215 * @param scratchCapacity capacity of the scratch buffer
223 UChar *scratch, int32_t scratchCapacity
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
nouveau_buffer.c 535 /* Scratch data allocation. */
548 if (!nv->scratch.nr_runout)
551 --nv->scratch.nr_runout;
552 nouveau_bo_ref(NULL, &nv->scratch.runout[nv->scratch.nr_runout]);
553 } while (nv->scratch.nr_runout);
555 FREE(nv->scratch.runout);
556 nv->scratch.end = 0;
557 nv->scratch.runout = NULL;
567 const unsigned n = nv->scratch.nr_runout++
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_buffer.c 535 /* Scratch data allocation. */
548 if (!nv->scratch.nr_runout)
551 --nv->scratch.nr_runout;
552 nouveau_bo_ref(NULL, &nv->scratch.runout[nv->scratch.nr_runout]);
553 } while (nv->scratch.nr_runout);
555 FREE(nv->scratch.runout);
556 nv->scratch.end = 0;
557 nv->scratch.runout = NULL;
567 const unsigned n = nv->scratch.nr_runout++
    [all...]
  /external/icu/icu4c/source/i18n/
bocsu.cpp 100 char scratch[64]; local
105 char *buffer=sink.GetAppendBuffer(1, length*2, scratch, (int32_t)sizeof(scratch), &capacity);
111 buffer=scratch;
112 capacity=(int32_t)sizeof(scratch);
  /external/chromium_org/third_party/icu/source/test/intltest/
strtest.cpp 366 char scratch[20]; local
368 char *dest = sink.GetAppendBuffer(0, 50, scratch, (int32_t)sizeof(scratch), &capacity);
373 dest = sink.GetAppendBuffer(10, 50, scratch, 9, &capacity);
378 dest = sink.GetAppendBuffer(5, 50, scratch, (int32_t)sizeof(scratch), &capacity);
379 if(dest != scratch || capacity != (int32_t)sizeof(scratch)) {
380 errln("ByteSink.GetAppendBuffer() did not properly return the scratch buffer");
397 char scratch[10] local
    [all...]
  /external/icu/icu4c/source/test/intltest/
strtest.cpp 366 char scratch[20]; local
368 char *dest = sink.GetAppendBuffer(0, 50, scratch, (int32_t)sizeof(scratch), &capacity);
373 dest = sink.GetAppendBuffer(10, 50, scratch, 9, &capacity);
378 dest = sink.GetAppendBuffer(5, 50, scratch, (int32_t)sizeof(scratch), &capacity);
379 if(dest != scratch || capacity != (int32_t)sizeof(scratch)) {
380 errln("ByteSink.GetAppendBuffer() did not properly return the scratch buffer");
397 char scratch[10] local
    [all...]
  /external/chromium_org/v8/src/mips/
lithium-codegen-mips.cc 428 Register LCodeGen::EmitLoadRegister(LOperand* op, Register scratch) {
438 __ li(scratch, Operand(static_cast<int32_t>(literal->Number())));
441 __ li(scratch, Operand(Smi::FromInt(constant->Integer32Value())));
446 __ li(scratch, literal);
448 return scratch;
450 __ lw(scratch, ToMemOperand(op));
451 return scratch;
454 return scratch;
834 Register scratch = scratch0(); local
837 __ Push(a1, scratch);
1326 Register scratch = result.is(dividend) ? scratch0() : dividend; local
1468 Register scratch = scratch0(); local
1616 Register scratch = scratch0(); local
1713 Register scratch = scratch1(); local
1774 Register scratch = ToRegister(instr->temp()); local
1820 Register scratch = scratch0(); local
1840 Register scratch = scratch0(); local
1868 Register scratch = scratch0(); local
1903 Register scratch = scratch1(); local
1935 Register scratch = scratch1(); local
2215 const Register scratch = scratch1(); local
2370 Register scratch = scratch0(); local
2379 Register scratch = ToRegister(instr->temp()); local
2545 Register scratch = scratch0(); local
2574 Register scratch = scratch0(); local
2964 Register scratch = scratch0(); local
3043 Register scratch = scratch0(); local
3216 Register scratch = scratch0(); local
3250 Register scratch = scratch0(); local
3350 Register scratch = scratch0(); local
3396 Register scratch = scratch0(); local
3457 Register scratch = scratch0(); local
3590 Register scratch = scratch0(); local
3734 Register scratch = scratch0(); local
3939 Register scratch = a3; local
4099 Register scratch = scratch0(); local
4305 Register scratch = scratch0(); local
4354 Register scratch = scratch0(); local
4423 Register scratch = scratch0(); local
4508 Register scratch = scratch0(); local
4555 Register scratch = scratch0(); local
4594 Register scratch = scratch0(); local
4750 Register scratch = scratch0(); local
4813 Register scratch = scratch0(); local
4835 Register scratch = scratch0(); local
5096 Register scratch = scratch0(); local
5235 Register scratch = scratch0(); local
5304 Register scratch = ToRegister(instr->temp1()); local
5519 Register scratch = scratch0(); local
5869 Register scratch = scratch0(); local
    [all...]
  /external/chromium_org/v8/src/mips64/
macro-assembler-mips64.h 238 // Swap two registers. If the scratch register is omitted then a slightly
240 void Swap(Register reg1, Register reg2, Register scratch = no_reg);
327 Register scratch,
332 Register scratch,
338 Register scratch,
342 // The register scratch can be object itself, but it will be clobbered.
344 Register scratch,
346 InNewSpace(object, scratch, ne, branch);
350 // The register scratch can be object itself, but scratch will be clobbered
    [all...]
  /development/samples/OpenGL/HelloOpenGLES20/src/com/example/android/opengl/
MyGLRenderer.java 61 float[] scratch = new float[16]; local
87 Matrix.multiplyMM(scratch, 0, mMVPMatrix, 0, mRotationMatrix, 0);
90 mTriangle.draw(scratch);

Completed in 797 milliseconds

12 3 4 5 6 7 8 91011>>