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

1 2 3 4

  /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/webkit/WebKit/android/nav/
CachedInput.cpp 43 char scratch[256]; local
44 size_t index = snprintf(scratch, sizeof(scratch), label);
46 while (ch && *ch && index < sizeof(scratch)) {
49 scratch[index++] = c;
51 DUMP_NAV_LOGD("%.*s\"\n", index, scratch);
  /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);
  /external/v8/src/mips/
macro-assembler-mips.cc 123 Register scratch) {
422 // Trashes the at register if no scratch register is provided.
424 const Operand& rt, Register scratch) {
427 // We don't want any other register but scratch clobbered.
428 ASSERT(!scratch.is(rs) && !scratch.is(rt.rm_));
431 // We don't want any other register but scratch clobbered.
432 ASSERT(!scratch.is(rs));
433 r2 = scratch;
450 slt(scratch, r2, rs)
    [all...]
macro-assembler-mips.h 85 const Operand& rt = Operand(zero_reg), Register scratch = at);
87 const Operand& rt = Operand(zero_reg), Register scratch = at);
91 Register scratch = at);
94 Register scratch = at);
120 // of an allocated page. The 'scratch' register is used in the
123 void RecordWrite(Register object, Register offset, Register scratch);
244 Register scratch = at) {
246 andi(scratch, value, kSmiTagMask);
247 Branch(eq, smi_label, scratch, Operand(zero_reg));
252 Register scratch = at)
    [all...]
  /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/skia/src/animator/
SkBuildCondensedInfo.cpp 96 static void Get3DName(char* scratch, const char* name) {
98 strcpy(scratch, "3D_");
99 scratch[3]= name[7] & ~0x20;
100 strcpy(&scratch[4], &name[8]);
102 scratch[0] = name[0] & ~0x20;
103 strcpy(&scratch[1], &name[1]);
173 char scratch[64];
178 Get3DName(scratch, gTypeNames[typeNameIndex].fName);
182 sprintf(scratch, "Unknown%d", unknown++);
185 WriteInfo(condensed, info, gInfosCounts[index], scratch, drawPrefix, displayPrefix)
    [all...]
  /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/icu4c/common/
bytestream.cpp 15 char* scratch, int32_t scratch_capacity,
22 return scratch;
48 char* scratch,
61 return scratch;
  /external/webkit/WebKit/android/
TimeCounter.cpp 132 char scratch[256]; local
133 int index = sprintf(scratch, "*-* Total %s time: %d ms",
136 sprintf(&scratch[index], " called %d times", sCounter[type]);
137 LOGD("%s", scratch);
164 char scratch[256]; local
165 int index = sprintf(scratch, "*-* Diff %s time: %d ms",
168 sprintf(&scratch[index], " called %d times", sCounter[type]
170 LOGD("%s", scratch);
  /external/v8/src/ia32/
macro-assembler-ia32.h 53 // If offset is zero, then the scratch register contains the array index into
59 Register scratch);
70 Register scratch,
199 // in case of global object holders. The scratch and holder
209 Register scratch,
215 // is left untouched, but the scratch register is clobbered.
217 Register scratch,
227 // scratch can be passed as no_reg in which case an additional object
232 // AllocateInNewSpace). If result_contains_top_on_entry is true scratch
237 Register scratch,
    [all...]
macro-assembler-ia32.cc 53 Register scratch) {
76 masm->mov(scratch, Operand(page_start, Page::kObjectStartOffset
78 Register array_length = scratch;
102 RecordWriteStub(Register object, Register addr, Register scratch)
103 : object_(object), addr_(addr), scratch_(scratch) { }
114 PrintF("RecordWriteStub (object reg %d), (addr reg %d), (scratch reg %d)\n",
120 // scratch) OOOOAAAASSSS.
144 // If offset is zero, then the scratch register contains the array index into
148 Register value, Register scratch) {
152 ASSERT(!object.is(esi) && !value.is(esi) && !scratch.is(esi))
308 mov(Operand::StaticVariable(reg_addr), scratch); local
1254 mov(Operand::StaticVariable(extensions_address), scratch); local
    [all...]
  /external/webkit/WebCore/platform/graphics/android/
PathAndroid.cpp 353 static ImageBuffer* scratch = 0; local
355 if (!scratch)
356 scratch = ImageBuffer::create(IntSize(1, 1)).release();
359 return scratch->context();
364 GraphicsContext* scratch = scratchContext(); local
365 scratch->save();
366 scratch->beginPath();
367 scratch->addPath(*this);
370 applier->strokeStyle(scratch);
372 FloatRect r = boundingBoxForCurrentStroke(scratch);
    [all...]
  /external/webkit/WebCore/platform/graphics/skia/
PathSkia.cpp 292 GraphicsContext* scratch = scratchContext(); local
293 scratch->save();
294 scratch->beginPath();
295 scratch->addPath(*this);
298 applier->strokeStyle(scratch);
300 FloatRect r = boundingBoxForCurrentStroke(scratch);
301 scratch->restore();
308 GraphicsContext* scratch = scratchContext(); local
309 scratch->save();
311 applier->strokeStyle(scratch);
    [all...]
  /external/icu4c/test/intltest/
strtest.cpp 421 char scratch[20]; local
423 char *dest = sink.GetAppendBuffer(0, 50, scratch, (int32_t)sizeof(scratch), &capacity);
428 dest = sink.GetAppendBuffer(10, 50, scratch, 9, &capacity);
433 dest = sink.GetAppendBuffer(5, 50, scratch, (int32_t)sizeof(scratch), &capacity);
434 if(dest != scratch || capacity != (int32_t)sizeof(scratch)) {
435 errln("ByteSink.GetAppendBuffer() did not properly return the scratch buffer");
449 char scratch[10] local
    [all...]
  /external/webkit/WebKitTools/android/webkitmerge/
webkitmerge.cpp 156 scratchDir += "/scratch/";
172 // scratch files
206 char scratch[2048]; local
208 sprintf(scratch, "merge -p -q \"%s/%s/%s\" \"%s/%s/%s\" \"%s/%s/%s\" > %s",
210 int err = system(scratch);
452 char scratch[2048];
454 sprintf(scratch, "diff \"%s/%s/%s\" \"%s/%s/%s\" > %s", sandboxBase, dir,
456 int err = system(scratch);
482 char scratch[2048];
486 sprintf(scratch, "diff --brief \"%s/%s/%.*s\" \"%s/%s/%.*s\" > %s",
1495 char scratch[1024]; local
    [all...]
  /external/v8/src/arm/
macro-assembler-arm.cc 202 // Will clobber 4 registers: object, offset, scratch, ip. The
206 Register scratch) {
210 ASSERT(!object.is(cp) && !offset.is(cp) && !scratch.is(cp));
223 and_(scratch, object, Operand(ExternalReference::new_space_mask()));
224 cmp(scratch, Operand(ExternalReference::new_space_start()));
231 and_(scratch, object, Operand(ip)); // offset into page of the object
232 add(offset, scratch, Operand(offset)); // add offset into the object
251 // Load the array length into 'scratch' and multiply by four to get the
253 ldr(scratch, MemOperand(object, Page::kObjectStartOffset
255 mov(scratch, Operand(scratch, LSL, kObjectAlignmentBits))
    [all...]
stub-cache-arm.cc 88 Register scratch,
100 ASSERT(!scratch.is(receiver));
101 ASSERT(!scratch.is(name));
108 __ ldr(scratch, FieldMemOperand(name, String::kHashFieldOffset));
110 __ add(scratch, scratch, Operand(ip));
111 __ eor(scratch, scratch, Operand(flags));
112 __ and_(scratch,
113 scratch,
405 Register scratch = receiver; local
965 const Register scratch = r3; local
    [all...]
  /external/icu4c/common/unicode/
bytestream.h 72 * May return a pointer to the caller-owned scratch buffer which must have
94 * If a non-scratch buffer is returned, the caller may only pass
98 * The default implementation always returns the scratch buffer.
104 * @param scratch default caller-owned buffer
105 * @param scratch_capacity capacity of the scratch buffer
113 char* scratch, int32_t scratch_capacity,
165 * @param scratch default caller-owned buffer
166 * @param scratch_capacity capacity of the scratch buffer
174 char* scratch, int32_t scratch_capacity,
  /external/v8/src/x64/
macro-assembler-x64.cc 78 Register scratch) {
102 // Load the array length into 'scratch'.
103 masm->movl(scratch,
106 Register array_length = scratch;
130 RecordWriteStub(Register object, Register addr, Register scratch)
131 : object_(object), addr_(addr), scratch_(scratch) { }
142 PrintF("RecordWriteStub (object reg %d), (addr reg %d), (scratch reg %d)\n",
148 // scratch) OOOOAAAASSSS.
174 // scratch register.
209 Register scratch,
244 bts(Operand(object, Page::kRSetOffset), scratch); local
1783 movq(Operand(kScratchRegister, 0), scratch); local
    [all...]
  /external/skia/src/core/
SkWriter32.cpp 132 char scratch[1024]; local
133 const size_t MAX = sizeof(scratch);
141 size_t bytes = stream->read(scratch, n);
142 this->writePad(scratch, bytes);
  /external/blktrace/btt/
trace.c 59 char scratch[15]; local
69 make_dev_hdr(scratch, 15, iop->dip, 1),
  /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;

Completed in 423 milliseconds

1 2 3 4