/external/aac/libFDK/src/mips/ |
fft_rad2_mips.cpp | 109 int32c scratch[1024]; local 124 mips_fft32(dout, din, twiddles, scratch, ldn);
|
/external/blktrace/btt/ |
trace.c | 59 char scratch[15]; local 69 make_dev_hdr(scratch, 15, iop->dip, 1),
|
/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/icu4c/i18n/ |
bocsu.cpp | 100 char scratch[64]; local 106 char *buffer=sink.GetAppendBuffer(1, length*2, scratch, (int32_t)sizeof(scratch), &capacity); 112 buffer=scratch; 113 capacity=(int32_t)sizeof(scratch);
|
/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...] |
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/protobuf/src/google/protobuf/ |
generated_message_reflection_unittest.cc | 113 string scratch; local 116 &reflection->GetStringReference(message, F("optional_string"), &scratch)) 121 0, &scratch))
|
/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);
|
/external/ceres-solver/internal/ceres/ |
residual_block_test.cc | 76 double scratch[64]; local 108 residual_block.Evaluate(&cost, NULL, NULL, scratch); 113 residual_block.Evaluate(&cost, residuals, NULL, scratch); 137 residual_block.Evaluate(&cost, residuals, jacobian_ptrs, scratch); 156 residual_block.Evaluate(&cost, residuals, jacobian_ptrs, scratch); 203 double scratch[64]; local 247 residual_block.Evaluate(&cost, NULL, NULL, scratch); 252 residual_block.Evaluate(&cost, residuals, NULL, scratch); 276 residual_block.Evaluate(&cost, residuals, jacobian_ptrs, scratch); 314 residual_block.Evaluate(&cost, residuals, jacobian_ptrs, scratch); [all...] |
program_evaluator.h | 77 // some per-thread scratch space. 138 // Each thread gets it's own cost and evaluate scratch space. 162 EvaluateScratch* scratch = &evaluate_scratch_[thread_id]; local 170 block_residuals = scratch->residual_block_residuals.get(); 179 scratch->jacobian_block_ptrs.get()); 180 block_jacobians = scratch->jacobian_block_ptrs.get(); 189 scratch->residual_block_evaluate_scratch.get())) { 198 scratch->cost += block_cost; 221 VectorRef block_gradient(scratch->gradient.get() + 266 // Per-thread scratch space needed to evaluate and store each residual block [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/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/ |
TGALoader.java | 458 ByteBuffer scratch = BufferUtils.createByteBuffer(rawData.length); local 459 scratch.clear(); 460 scratch.put(rawData); 461 scratch.rewind(); 467 textureImage.setData(scratch);
|
/external/harfbuzz_ng/src/ |
hb-icu-le.cc | 131 char *scratch = (char *) buffer->get_scratch_buffer (&scratch_size); local 134 Type *name = (Type *) scratch; \ 135 scratch += (len) * sizeof ((name)[0]); \
|
hb-coretext.cc | 191 char *scratch = (char *) buffer->get_scratch_buffer (&scratch_size); local 195 UniChar *pchars = (UniChar *) scratch; 254 char *scratch = (char *) buffer->get_scratch_buffer (&scratch_size); local 257 Type *name = (Type *) scratch; \ 258 scratch += (len) * sizeof ((name)[0]); \
|
hb-graphite2.cc | 247 char *scratch = (char *) buffer->get_scratch_buffer (&scratch_size); local 250 Type *name = (Type *) scratch; \ 251 scratch += (len) * sizeof ((name)[0]); \ 280 scratch = (char *) buffer->get_scratch_buffer (&scratch_size); 290 scratch = (char *) buffer->get_scratch_buffer (&scratch_size);
|
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/Xinerama/ |
Xinerama.c | 301 xXineramaScreenInfo scratch; local 305 _XRead(dpy, (char*)(&scratch), sz_XineramaScreenInfo); 307 scrnInfo[i].x_org = scratch.x_org; 308 scrnInfo[i].y_org = scratch.y_org; 309 scrnInfo[i].width = scratch.width; 310 scrnInfo[i].height = scratch.height;
|
/external/v8/src/mips/ |
codegen-mips.cc | 82 // -- a3 : target map, scratch for subsequent call 83 // -- t0 : scratch (elements) 105 // -- a3 : target map, scratch for subsequent call 106 // -- t0 : scratch (elements) 111 Register scratch = t6; local 125 __ sll(scratch, t1, 2); 126 __ Addu(scratch, scratch, FixedDoubleArray::kHeaderSize); 127 __ AllocateInNewSpace(scratch, t2, t3, t5, &gc_required, NO_ALLOCATION_FLAGS); 248 // -- a3 : target map, scratch for subsequent cal [all...] |
/external/icu4c/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/skia/legacy/src/core/ |
SkWriter32.cpp | 161 char scratch[1024]; local 162 const size_t MAX = sizeof(scratch); 170 size_t bytes = stream->read(scratch, n); 171 this->writePad(scratch, bytes);
|
/external/skia/src/core/ |
SkWriter32.cpp | 186 char scratch[1024]; local 187 const size_t MAX = sizeof(scratch); 195 size_t bytes = stream->read(scratch, n); 196 this->writePad(scratch, bytes);
|
/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...] |
/libcore/luni/src/main/java/java/io/ |
DataInputStream.java | 37 private final byte[] scratch = new byte[8]; field in class:DataInputStream 124 Streams.readFully(in, scratch, 0, SizeOf.INT); 125 return Memory.peekInt(scratch, 0, ByteOrder.BIG_ENDIAN); 164 Streams.readFully(in, scratch, 0, SizeOf.LONG); 165 return Memory.peekLong(scratch, 0, ByteOrder.BIG_ENDIAN); 169 Streams.readFully(in, scratch, 0, SizeOf.SHORT); 170 return Memory.peekShort(scratch, 0, ByteOrder.BIG_ENDIAN);
|
DataOutputStream.java | 34 private final byte[] scratch = new byte[8]; field in class:DataOutputStream 179 Memory.pokeInt(scratch, 0, val, ByteOrder.BIG_ENDIAN); 180 out.write(scratch, 0, SizeOf.INT); 185 Memory.pokeLong(scratch, 0, val, ByteOrder.BIG_ENDIAN); 186 out.write(scratch, 0, SizeOf.LONG); 191 Memory.pokeShort(scratch, 0, (short) val, ByteOrder.BIG_ENDIAN); 192 out.write(scratch, 0, SizeOf.SHORT);
|
/libcore/support/src/test/java/libcore/javax/net/ssl/ |
TestSSLEnginePair.java | 74 ByteBuffer scratch = ByteBuffer.allocate(applicationBufferSize); local 96 scratch); 102 scratch); 122 ByteBuffer scratch) throws IOException { 146 SSLEngineResult unwrapResult = engine.unwrap(input, scratch); 148 assertEquals(0, scratch.position());
|