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

1 2 3

  /bootable/bootloader/legacy/libc/
xprintf.c 53 char scratch[16]; local
88 char *p = scratch + 15;
94 while(p > (scratch + 7)) *--p = '0';
101 char *p = scratch + 15;
  /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 43 char scratch[16]; local
44 sprintf(scratch, "%g", left);
45 parser._addAttribute("left", scratch);
46 sprintf(scratch, "%g", top);
47 parser._addAttribute("top", scratch);
48 sprintf(scratch, "%g", right);
49 parser._addAttribute("right", scratch);
50 sprintf(scratch, "%g", bottom);
51 parser._addAttribute("bottom", scratch);
SkSVGEllipse.cpp 45 char scratch[16]; local
46 sprintf(scratch, "%g", left);
47 parser._addAttribute("left", scratch);
48 sprintf(scratch, "%g", top);
49 parser._addAttribute("top", scratch);
50 sprintf(scratch, "%g", right);
51 parser._addAttribute("right", scratch);
52 sprintf(scratch, "%g", bottom);
53 parser._addAttribute("bottom", scratch);
  /frameworks/base/libs/ui/
GraphicLog.cpp 57 uint8_t scratch[2 + 2 + sizeof(int32_t) + sizeof(int64_t)]; local
59 scratch[pos++] = EVENT_TYPE_LIST;
60 scratch[pos++] = 2;
61 writeInt32(scratch, pos, buffer);
62 writeInt64(scratch, pos, ns2ms( systemTime( SYSTEM_TIME_MONOTONIC ) ));
63 android_bWriteLog(tag, scratch, sizeof(scratch));
68 uint8_t scratch[2 + 3 + sizeof(int32_t) + sizeof(int32_t) + sizeof(int64_t)]; local
70 scratch[pos++] = EVENT_TYPE_LIST;
71 scratch[pos++] = 3
    [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))
test_util.cc 2273 string scratch; local
2355 string scratch; local
2473 string scratch; local
2588 string scratch; local
    [all...]
wire_format.cc 832 string scratch; local
835 message, field, j, &scratch) :
836 message_reflection->GetStringReference(message, field, &scratch);
843 string scratch; local
846 message, field, j, &scratch) :
847 message_reflection->GetStringReference(message, field, &scratch);
1012 string scratch; local
    [all...]
  /external/webkit/Source/WebKit/android/nav/
CachedInput.cpp 68 char scratch[256]; local
69 size_t index = snprintf(scratch, sizeof(scratch), label);
71 while (ch && *ch && index < sizeof(scratch)) {
74 scratch[index++] = c;
76 DUMP_NAV_LOGD("%.*s\"\n", index, scratch);
CachedNode.cpp 380 char scratch[256]; local
381 size_t index = snprintf(scratch, sizeof(scratch), "// char* mExport=\"");
383 while (ch && *ch && index < sizeof(scratch)) {
386 scratch[index++] = c;
388 DUMP_NAV_LOGD("%.*s\"\n", index, scratch);
  /system/core/libzipfile/
test_zipfile.c 14 void* scratch; local
75 scratch = malloc(size);
76 printf("scratch=%p\n", scratch);
77 err = decompress_zipentry(entry, scratch, size);
82 fwrite(scratch, unsize, 1, f);
83 free(scratch);
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/Xinerama/
Xinerama.c 296 xXineramaScreenInfo scratch; local
300 _XRead(dpy, (char*)(&scratch), sz_XineramaScreenInfo);
302 scrnInfo[i].x_org = scratch.x_org;
303 scrnInfo[i].y_org = scratch.y_org;
304 scrnInfo[i].width = scratch.width;
305 scrnInfo[i].height = scratch.height;
  /external/skia/src/core/
SkWriter32.cpp 154 char scratch[1024]; local
155 const size_t MAX = sizeof(scratch);
163 size_t bytes = stream->read(scratch, n);
164 this->writePad(scratch, bytes);
SkMemory_stdlib.cpp 89 char scratch[256]; local
90 char* pos = scratch;
113 SkDebugf("%s\n", scratch);
  /external/v8/src/ia32/
lithium-gap-resolver-ia32.cc 261 Register scratch = Register::FromAllocationIndex(i); local
262 __ push(scratch);
264 return scratch;
269 Register scratch = Register::FromAllocationIndex(0); local
270 __ push(scratch);
272 return scratch;
326 // We rely on having xmm0 available as a fixed scratch register.
397 // available as a fixed scratch register.
413 // a fixed scratch register.
  /external/webkit/Source/WebKit/android/
TimeCounter.cpp 131 char scratch[256]; local
132 int index = sprintf(scratch, "*-* Total %s time: %d ms",
135 sprintf(&scratch[index], " called %d times", sCounter[type]);
136 LOGD("%s", scratch);
163 char scratch[256]; local
164 int index = sprintf(scratch, "*-* Diff %s time: %d ms",
167 sprintf(&scratch[index], " called %d times", sCounter[type]
169 LOGD("%s", scratch);
  /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());
  /external/icu4c/test/intltest/
strtest.cpp 398 char scratch[20]; local
400 char *dest = sink.GetAppendBuffer(0, 50, scratch, (int32_t)sizeof(scratch), &capacity);
405 dest = sink.GetAppendBuffer(10, 50, scratch, 9, &capacity);
410 dest = sink.GetAppendBuffer(5, 50, scratch, (int32_t)sizeof(scratch), &capacity);
411 if(dest != scratch || capacity != (int32_t)sizeof(scratch)) {
412 errln("ByteSink.GetAppendBuffer() did not properly return the scratch buffer");
429 char scratch[10] 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...]
  /external/webkit/Source/WebCore/platform/graphics/android/
PathAndroid.cpp 290 GraphicsContext* scratch = scratchContext(); local
291 scratch->save();
294 applier->strokeStyle(scratch);
297 scratch->setupStrokePaint(&paint);
302 scratch->restore();
309 GraphicsContext* scratch = scratchContext(); local
310 scratch->save();
312 applier->strokeStyle(scratch);
315 scratch->setupStrokePaint(&paint);
321 scratch->restore()
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/skia/
PathSkia.cpp 233 GraphicsContext* scratch = scratchContext(); local
234 scratch->save();
237 applier->strokeStyle(scratch);
240 scratch->platformContext()->setupPaintForStroking(&paint, 0, 0);
245 scratch->restore();
252 GraphicsContext* scratch = scratchContext(); local
253 scratch->save();
255 applier->strokeStyle(scratch);
258 scratch->platformContext()->setupPaintForStroking(&paint, 0, 0);
264 scratch->restore()
    [all...]
SkiaUtils.cpp 251 static ImageBuffer* scratch = ImageBuffer::create(IntSize(1, 1)).leakPtr(); local
254 return scratch->context();

Completed in 828 milliseconds

1 2 3