HomeSort by relevance Sort by last modified time
    Searched refs:scratch (Results 1 - 25 of 318) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nouveau_scratch.c 39 struct nouveau_scratch_state *scratch = local
40 &to_nouveau_context(ctx)->scratch;
43 if (scratch->buf && size <= NOUVEAU_SCRATCH_SIZE - scratch->offset) {
44 nouveau_bo_ref(scratch->bo[scratch->index], bo);
46 buf = scratch->buf + scratch->offset;
47 *offset = scratch->offset;
48 scratch->offset += size
76 struct nouveau_scratch_state *scratch = local
91 struct nouveau_scratch_state *scratch = local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_scratch.c 39 struct nouveau_scratch_state *scratch = local
40 &to_nouveau_context(ctx)->scratch;
43 if (scratch->buf && size <= NOUVEAU_SCRATCH_SIZE - scratch->offset) {
44 nouveau_bo_ref(scratch->bo[scratch->index], bo);
46 buf = scratch->buf + scratch->offset;
47 *offset = scratch->offset;
48 scratch->offset += size
76 struct nouveau_scratch_state *scratch = local
91 struct nouveau_scratch_state *scratch = local
    [all...]
  /external/chromium_org/third_party/opus/src/celt/
kiss_fft.c 122 kiss_fft_cpx scratch[6]; local
134 C_MUL4(scratch[0],Fout[m] , *tw1 );
135 C_MUL4(scratch[1],Fout[m2] , *tw2 );
136 C_MUL4(scratch[2],Fout[m3] , *tw3 );
140 C_SUB( scratch[5] , *Fout, scratch[1] );
141 C_ADDTO(*Fout, scratch[1]);
142 C_ADD( scratch[3] , scratch[0] , scratch[2] )
169 kiss_fft_cpx scratch[6]; local
219 kiss_fft_cpx scratch[5]; local
270 kiss_fft_cpx scratch[5]; local
319 kiss_fft_cpx scratch[13]; local
388 kiss_fft_cpx scratch[13]; local
    [all...]
  /external/libopus/celt/
kiss_fft.c 122 kiss_fft_cpx scratch[6]; local
134 C_MUL4(scratch[0],Fout[m] , *tw1 );
135 C_MUL4(scratch[1],Fout[m2] , *tw2 );
136 C_MUL4(scratch[2],Fout[m3] , *tw3 );
140 C_SUB( scratch[5] , *Fout, scratch[1] );
141 C_ADDTO(*Fout, scratch[1]);
142 C_ADD( scratch[3] , scratch[0] , scratch[2] )
169 kiss_fft_cpx scratch[6]; local
219 kiss_fft_cpx scratch[5]; local
270 kiss_fft_cpx scratch[5]; local
319 kiss_fft_cpx scratch[13]; local
388 kiss_fft_cpx scratch[13]; local
    [all...]
  /external/speex/libspeex/
kiss_fft.c 96 kiss_fft_cpx scratch[6]; local
110 C_MUL(scratch[0],Fout[m] , *tw1 );
111 C_MUL(scratch[1],Fout[m2] , *tw2 );
112 C_MUL(scratch[2],Fout[m3] , *tw3 );
114 C_SUB( scratch[5] , *Fout, scratch[1] );
115 C_ADDTO(*Fout, scratch[1]);
116 C_ADD( scratch[3] , scratch[0] , scratch[2] )
178 kiss_fft_cpx scratch[5]; local
223 kiss_fft_cpx scratch[13]; local
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLU.java 75 float[] scratch = sScratch; local
76 synchronized(scratch) {
77 Matrix.setLookAtM(scratch, 0, eyeX, eyeY, eyeZ, centerX, centerY, centerZ,
79 gl.glMultMatrixf(scratch, 0);
150 float[] scratch = sScratch; local
151 synchronized(scratch) {
155 Matrix.multiplyMM(scratch, M_OFFSET, project, projectOffset,
158 scratch[V_OFFSET + 0] = objX;
159 scratch[V_OFFSET + 1] = objY;
160 scratch[V_OFFSET + 2] = objZ
216 float[] scratch = sScratch; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/modes/
xts128.c 66 union { u64 u[2]; u32 d[4]; u8 c[16]; } tweak, scratch; local
79 memcpy(scratch.c,inp,16);
80 scratch.u[0] ^= tweak.u[0];
81 scratch.u[1] ^= tweak.u[1];
83 scratch.u[0] = ((u64*)inp)[0]^tweak.u[0];
84 scratch.u[1] = ((u64*)inp)[1]^tweak.u[1];
86 (*ctx->block1)(scratch.c,scratch.c,ctx->key1);
88 scratch.u[0] ^= tweak.u[0];
89 scratch.u[1] ^= tweak.u[1]
    [all...]
  /external/openssl/crypto/modes/
xts128.c 66 union { u64 u[2]; u32 d[4]; u8 c[16]; } tweak, scratch; local
79 memcpy(scratch.c,inp,16);
80 scratch.u[0] ^= tweak.u[0];
81 scratch.u[1] ^= tweak.u[1];
83 scratch.u[0] = ((u64*)inp)[0]^tweak.u[0];
84 scratch.u[1] = ((u64*)inp)[1]^tweak.u[1];
86 (*ctx->block1)(scratch.c,scratch.c,ctx->key1);
88 scratch.u[0] ^= tweak.u[0];
89 scratch.u[1] ^= tweak.u[1]
    [all...]
  /external/chromium_org/third_party/skia/src/svg/
SkSVGCircle.cpp 35 char scratch[16]; local
36 sprintf(scratch, "%g", SkScalarToDouble(left));
37 parser._addAttribute("left", scratch);
38 sprintf(scratch, "%g", SkScalarToDouble(top));
39 parser._addAttribute("top", scratch);
40 sprintf(scratch, "%g", SkScalarToDouble(right));
41 parser._addAttribute("right", scratch);
42 sprintf(scratch, "%g", SkScalarToDouble(bottom));
43 parser._addAttribute("bottom", scratch);
SkSVGEllipse.cpp 37 char scratch[16]; local
38 sprintf(scratch, "%g", SkScalarToDouble(left));
39 parser._addAttribute("left", scratch);
40 sprintf(scratch, "%g", SkScalarToDouble(top));
41 parser._addAttribute("top", scratch);
42 sprintf(scratch, "%g", SkScalarToDouble(right));
43 parser._addAttribute("right", scratch);
44 sprintf(scratch, "%g", SkScalarToDouble(bottom));
45 parser._addAttribute("bottom", scratch);
  /external/skia/src/svg/
SkSVGCircle.cpp 35 char scratch[16]; local
36 sprintf(scratch, "%g", SkScalarToDouble(left));
37 parser._addAttribute("left", scratch);
38 sprintf(scratch, "%g", SkScalarToDouble(top));
39 parser._addAttribute("top", scratch);
40 sprintf(scratch, "%g", SkScalarToDouble(right));
41 parser._addAttribute("right", scratch);
42 sprintf(scratch, "%g", SkScalarToDouble(bottom));
43 parser._addAttribute("bottom", scratch);
SkSVGEllipse.cpp 37 char scratch[16]; local
38 sprintf(scratch, "%g", SkScalarToDouble(left));
39 parser._addAttribute("left", scratch);
40 sprintf(scratch, "%g", SkScalarToDouble(top));
41 parser._addAttribute("top", scratch);
42 sprintf(scratch, "%g", SkScalarToDouble(right));
43 parser._addAttribute("right", scratch);
44 sprintf(scratch, "%g", SkScalarToDouble(bottom));
45 parser._addAttribute("bottom", scratch);
  /external/eigen/unsupported/Eigen/src/FFT/
ei_kissfft_impl.h 111 Complex scratch[6]; local
114 scratch[0] = Fout[k+m] * m_twiddles[k*fstride];
115 scratch[1] = Fout[k+2*m] * m_twiddles[k*fstride*2];
116 scratch[2] = Fout[k+3*m] * m_twiddles[k*fstride*3];
117 scratch[5] = Fout[k] - scratch[1];
119 Fout[k] += scratch[1];
120 scratch[3] = scratch[0] + scratch[2]
137 Complex scratch[5]; local
165 Complex scratch[13]; local
    [all...]
  /external/guava/guava/src/com/google/common/hash/
MessageDigestHashFunction.java 64 private final ByteBuffer scratch; // lazy convenience field in class:MessageDigestHashFunction.MessageDigestHasher
69 this.scratch = ByteBuffer.allocate(8).order(ByteOrder.LITTLE_ENDIAN);
93 scratch.putShort(s);
94 digest.update(scratch.array(), 0, Shorts.BYTES);
95 scratch.clear();
101 scratch.putInt(i);
102 digest.update(scratch.array(), 0, Ints.BYTES);
103 scratch.clear();
109 scratch.putLong(l);
110 digest.update(scratch.array(), 0, Longs.BYTES)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
nouveau_context.h 42 } scratch; member in struct:nouveau_context
57 /* This is needed because we don't hold references outside of context::scratch,
64 nv->scratch.wrap = nv->scratch.id;
65 if (unlikely(nv->scratch.nr_runout))
69 /* Get pointer to scratch buffer.
82 if (ctx->scratch.bo[i])
83 nouveau_bo_ref(NULL, &ctx->scratch.bo[i]);
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_context.h 42 } scratch; member in struct:nouveau_context
57 /* This is needed because we don't hold references outside of context::scratch,
64 nv->scratch.wrap = nv->scratch.id;
65 if (unlikely(nv->scratch.nr_runout))
69 /* Get pointer to scratch buffer.
82 if (ctx->scratch.bo[i])
83 nouveau_bo_ref(NULL, &ctx->scratch.bo[i]);
  /external/llvm/lib/Target/Sparc/
SparcJITInfo.cpp 123 // the instructions emitted in the scratch register.
125 unsigned scratch,
129 // Emit: jmpl %g0+Addr, <scratch>
131 Insts.push_back(JMP_INST(0, LO10(Addr), scratch));
137 // Emit: sethi %hi(Addr), scratch
138 // jmpl scratch+%lo(Addr), scratch
139 // sub scratch, 4, scratch
140 Insts.push_back(SETHI_INST(HI22(Addr), scratch));
    [all...]
  /art/compiler/utils/arm64/
assembler_arm64.cc 56 void Arm64Assembler::GetCurrentThread(FrameOffset offset, ManagedRegister /* scratch */) {
155 Arm64ManagedRegister scratch = m_scratch.AsArm64(); local
156 CHECK(scratch.IsCoreRegister()) << scratch;
157 LoadImmediate(scratch.AsCoreRegister(), imm);
158 StoreWToOffset(kStoreWord, scratch.AsOverlappingCoreRegisterLow(), SP,
164 Arm64ManagedRegister scratch = m_scratch.AsArm64(); local
165 CHECK(scratch.IsCoreRegister()) << scratch;
166 LoadImmediate(scratch.AsCoreRegister(), imm)
173 Arm64ManagedRegister scratch = m_scratch.AsArm64(); local
189 Arm64ManagedRegister scratch = m_scratch.AsArm64(); local
351 Arm64ManagedRegister scratch = m_scratch.AsArm64(); local
360 Arm64ManagedRegister scratch = m_scratch.AsArm64(); local
368 Arm64ManagedRegister scratch = m_scratch.AsArm64(); local
378 Arm64ManagedRegister scratch = m_scratch.AsArm64(); local
394 Arm64ManagedRegister scratch = m_scratch.AsArm64(); local
413 Arm64ManagedRegister scratch = m_scratch.AsArm64(); local
438 Arm64ManagedRegister scratch = m_scratch.AsArm64(); local
510 Arm64ManagedRegister scratch = m_scratch.AsArm64(); local
519 Arm64ManagedRegister scratch = m_scratch.AsArm64(); local
530 Arm64ManagedRegister scratch = m_scratch.AsArm64(); local
570 Arm64ManagedRegister scratch = m_scratch.AsArm64(); local
605 Arm64ManagedRegister scratch = m_scratch.AsArm64(); local
    [all...]
assembler_arm64.h 117 void StoreImmediateToFrame(FrameOffset dest, uint32_t imm, ManagedRegister scratch) OVERRIDE;
118 void StoreImmediateToThread64(ThreadOffset<8> dest, uint32_t imm, ManagedRegister scratch)
121 ManagedRegister scratch) OVERRIDE;
124 ManagedRegister scratch) OVERRIDE;
137 ManagedRegister scratch) OVERRIDE;
138 void CopyRawPtrToThread64(ThreadOffset<8> thr_offs, FrameOffset fr_offs, ManagedRegister scratch)
140 void CopyRef(FrameOffset dest, FrameOffset src, ManagedRegister scratch) OVERRIDE;
141 void Copy(FrameOffset dest, FrameOffset src, ManagedRegister scratch, size_t size) OVERRIDE;
142 void Copy(FrameOffset dest, ManagedRegister src_base, Offset src_offset, ManagedRegister scratch,
144 void Copy(ManagedRegister dest_base, Offset dest_offset, FrameOffset src, ManagedRegister scratch,
    [all...]
  /system/core/libzipfile/
test_zipfile.c 14 void* scratch; local
77 scratch = malloc(size);
78 printf("scratch=%p\n", scratch);
79 err = decompress_zipentry(entry, scratch, size);
84 fwrite(scratch, unsize, 1, f);
85 free(scratch);
  /art/compiler/utils/arm/
assembler_arm.cc 490 ArmManagedRegister scratch = mscratch.AsArm();
492 LoadFromOffset(kLoadWord, scratch.AsCoreRegister(), SP, in_off.Int32Value());
493 StoreToOffset(kStoreWord, scratch.AsCoreRegister(), SP, dest.Int32Value() + 4);
498 ArmManagedRegister scratch = mscratch.AsArm();
499 LoadFromOffset(kLoadWord, scratch.AsCoreRegister(), SP, src.Int32Value());
500 StoreToOffset(kStoreWord, scratch.AsCoreRegister(), SP, dest.Int32Value());
530 ArmManagedRegister scratch = mscratch.AsArm();
531 CHECK(scratch.IsCoreRegister()) << scratch;
532 LoadImmediate(scratch.AsCoreRegister(), imm)
    [all...]
  /external/chromium_org/v8/src/mips/
macro-assembler-mips.cc 179 Register scratch,
183 And(scratch, object, Operand(ExternalReference::new_space_mask(isolate())));
184 Branch(branch, cc, scratch,
281 map, // Used as scratch.
317 // Will clobber 4 registers: object, address, scratch, ip. The
358 value, // Used as scratch.
364 value, // Used as scratch.
393 Register scratch,
399 JumpIfNotInNewSpace(object, scratch, &ok);
407 lw(scratch, MemOperand(t8))
4972 Register scratch = scratch1; local
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkBuildCondensedInfo.cpp 88 static void Get3DName(char* scratch, const char* name) {
90 strcpy(scratch, "3D_");
91 scratch[3]= name[7] & ~0x20;
92 strcpy(&scratch[4], &name[8]);
94 scratch[0] = name[0] & ~0x20;
95 strcpy(&scratch[1], &name[1]);
165 char scratch[64];
170 Get3DName(scratch, gTypeNames[typeNameIndex].fName);
174 sprintf(scratch, "Unknown%d", unknown++);
177 WriteInfo(condensed, info, gInfosCounts[index], scratch, drawPrefix, displayPrefix)
    [all...]
  /external/skia/src/animator/
SkBuildCondensedInfo.cpp 88 static void Get3DName(char* scratch, const char* name) {
90 strcpy(scratch, "3D_");
91 scratch[3]= name[7] & ~0x20;
92 strcpy(&scratch[4], &name[8]);
94 scratch[0] = name[0] & ~0x20;
95 strcpy(&scratch[1], &name[1]);
165 char scratch[64];
170 Get3DName(scratch, gTypeNames[typeNameIndex].fName);
174 sprintf(scratch, "Unknown%d", unknown++);
177 WriteInfo(condensed, info, gInfosCounts[index], scratch, drawPrefix, displayPrefix)
    [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,

Completed in 1652 milliseconds

1 2 3 4 5 6 7 8 91011>>