Searched refs:scratch (Results 1 - 25 of 110) sorted by relevance

12345

/external/speex/libspeex/
H A Dkiss_fft.c96 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[
178 kiss_fft_cpx scratch[5]; local
223 kiss_fft_cpx scratch[13]; local
[all...]
/external/skia/src/svg/
H A DSkSVGCircle.cpp43 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);
H A DSkSVGEllipse.cpp45 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/webkit/Source/WebKit/android/nav/
H A DCachedInput.cpp68 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);
/external/v8/src/mips/
H A Dmacro-assembler-mips.cc163 Register scratch) {
167 InNewSpace(object, scratch, ne, &not_in_new_space);
186 lw(scratch, MemOperand(object, Page::kDirtyFlagOffset));
189 or_(scratch, scratch, at);
190 sw(scratch, MemOperand(object, Page::kDirtyFlagOffset));
195 Register scratch,
199 And(scratch, object, Operand(ExternalReference::new_space_mask(isolate())));
200 Branch(branch, cc, scratch,
241 // Will clobber 4 registers: object, address, scratch, i
161 RecordWriteHelper(Register object, Register address, Register scratch) argument
194 InNewSpace(Register object, Register scratch, Condition cc, Label* branch) argument
244 RecordWrite(Register object, Register address, Register scratch) argument
277 CheckAccessGlobalProxy(Register holder_reg, Register scratch, Label* miss) argument
2828 LoadGlobalFunctionInitialMap(Register function, Register map, Register scratch) argument
3032 JumpIfNotPowerOfTwoOrZero( Register reg, Register scratch, Label* not_power_of_two_or_zero) argument
3090 JumpIfNotHeapNumber(Register object, Register heap_number_map, Register scratch, Label* on_not_heap_number) argument
3156 JumpIfInstanceTypeIsNotSequentialAscii(Register type, Register scratch, Label* failure) argument
3169 PrepareCallCFunction(int num_arguments, Register scratch) argument
3205 CallCFunction(Register function, Register scratch, int num_arguments) argument
3215 CallCFunctionHelper(Register function, ExternalReference function_reference, Register scratch, int num_arguments) argument
[all...]
H A Dmacro-assembler-mips.h196 // Swap two registers. If the scratch register is omitted then a slightly
198 void Swap(Register reg1, Register reg2, Register scratch = no_reg);
230 // scratch can be object itself, but it will be clobbered.
232 Register scratch,
241 Register scratch);
245 // of an allocated page. The 'scratch' registers are used in the
261 Register scratch);
269 // is left untouched, whereas both scratch registers are clobbered.
271 Register scratch,
335 void UndoAllocationInNewSpace(Register object, Register scratch);
846 TrySmiTag(Register reg, Label* not_a_smi, Register scratch) argument
[all...]
/external/skia/src/animator/
H A DSkBuildCondensedInfo.cpp96 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, drawPrefi
[all...]
/external/icu4c/common/
H A Dbytestream.cpp15 char* scratch, int32_t scratch_capacity,
22 return scratch;
56 char* scratch,
69 return scratch;
13 GetAppendBuffer(int32_t min_capacity, int32_t , char* scratch, int32_t scratch_capacity, int32_t* result_capacity) argument
54 GetAppendBuffer(int32_t min_capacity, int32_t , char* scratch, int32_t scratch_capacity, int32_t* result_capacity) argument
/external/webkit/Source/WebKit/android/
H A DTimeCounter.cpp131 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);
/external/v8/src/ia32/
H A Dmacro-assembler-ia32.h72 Register scratch);
75 // scratch can be object itself, but it will be clobbered.
78 Register scratch,
84 // object being stored. If offset is zero, then the scratch register
92 Register scratch);
232 // The contents of the scratch register will always be overwritten.
235 Register scratch,
238 // The contents of the scratch register will be overwritten.
239 void IsInstanceJSObjectType(Register map, Register scratch, Label* fail);
291 Register scratch, // Ca
696 InNewSpace(Register object, Register scratch, Condition cc, LabelType* branch) argument
[all...]
H A Dmacro-assembler-ia32.cc57 Register scratch) {
61 InNewSpace(object, scratch, not_equal, &not_in_new_space);
83 Register scratch) {
101 Register dst = scratch;
122 mov(scratch, Immediate(BitCast<int32_t>(kZapValue)));
246 Register scratch,
249 IsInstanceJSObjectType(map, scratch, fail);
254 Register scratch,
256 movzx_b(scratch, FieldOperand(map, Map::kInstanceTypeOffset));
257 sub(Operand(scratch), Immediat
55 RecordWriteHelper(Register object, Register addr, Register scratch) argument
80 RecordWrite(Register object, int offset, Register value, Register scratch) argument
244 IsObjectJSObjectType(Register heap_object, Register map, Register scratch, Label* fail) argument
253 IsInstanceJSObjectType(Register map, Register scratch, Label* fail) argument
585 CheckAccessGlobalProxy(Register holder_reg, Register scratch, Label* miss) argument
653 LoadAllocationTopHelper(Register result, Register scratch, AllocationFlags flags) argument
681 UpdateAllocationTopHelper(Register result_end, Register scratch) argument
700 AllocateInNewSpace(int object_size, Register result, Register result_end, Register scratch, Label* gc_required, AllocationFlags flags) argument
755 AllocateInNewSpace(int header_size, ScaleFactor element_size, Register element_count, Register result, Register result_end, Register scratch, Label* gc_required, AllocationFlags flags) argument
803 AllocateInNewSpace(Register object_size, Register result, Register result_end, Register scratch, Label* gc_required, AllocationFlags flags) argument
1019 CopyBytes(Register source, Register destination, Register length, Register scratch) argument
1036 mov(Operand(destination, length, times_1, -4), scratch); local
1050 mov_b(Operand(destination, 0), scratch); local
1072 NegativeZeroTest(Register result, Register op1, Register op2, Register scratch, Label* then_label) argument
1087 TryGetFunctionPrototype(Register function, Register result, Register scratch, Label* miss) argument
1332 PrepareCallApiFunction(int argc, Register scratch) argument
1355 mov(Operand(esp, 0 * kPointerSize), scratch); // output. local
1729 Ret(int bytes_dropped, Register scratch) argument
1909 ConvertToInt32(Register dst, Register source, Register scratch, TypeInfo info, Label* on_not_int32) argument
1950 LoadPowerOf2(XMMRegister dst, Register scratch, int power) argument
1961 JumpIfInstanceTypeIsNotSequentialAscii( Register instance_type, Register scratch, Label* failure) argument
2007 PrepareCallCFunction(int num_arguments, Register scratch) argument
2016 mov(Operand(esp, num_arguments * kPointerSize), scratch); local
[all...]
H A Dcode-stubs-ia32.cc313 Register scratch,
318 static void LoadFloatSmis(MacroAssembler* masm, Register scratch);
325 Register scratch);
367 static void LoadSSE2Smis(MacroAssembler* masm, Register scratch);
373 Register scratch);
1735 // We are short on registers, so use no_reg as scratch.
1911 Register scratch = ebx; local
1920 __ mov(scratch, FieldOperand(source, HeapNumber::kExponentOffset));
1922 __ mov(scratch2, scratch);
1969 __ mov(scratch2, scratch);
2269 LoadSSE2Smis(MacroAssembler* masm, Register scratch) argument
2284 CheckSSE2OperandsAreInt32(MacroAssembler* masm, Label* non_int32, Register scratch) argument
2300 LoadFloatOperands(MacroAssembler* masm, Register scratch, ArgLocation arg_location) argument
2341 LoadFloatSmis(MacroAssembler* masm, Register scratch) argument
2353 __ mov(Operand(esp, 0), scratch); local
2359 CheckFloatOperands(MacroAssembler* masm, Label* non_float, Register scratch) argument
3307 Register scratch = scratch2; local
3742 BranchIfNonSymbol(MacroAssembler* masm, Label* label, Register object, Register scratch) argument
4156 Register scratch = ecx; local
4956 GenerateCopyCharacters(MacroAssembler* masm, Register dest, Register src, Register count, Register scratch, bool ascii) argument
4968 __ mov_b(Operand(dest, 0), scratch); local
4973 __ mov_w(Operand(dest, 0), scratch); local
4982 GenerateCopyCharactersREP(MacroAssembler* masm, Register dest, Register src, Register count, Register scratch, bool ascii) argument
5032 __ mov_b(Operand(dest, 0), scratch); local
5051 Register scratch = scratch3; local
5168 GenerateHashInit(MacroAssembler* masm, Register hash, Register character, Register scratch) argument
5183 GenerateHashAddCharacter(MacroAssembler* masm, Register hash, Register character, Register scratch) argument
5200 GenerateHashGetHash(MacroAssembler* masm, Register hash, Register scratch) argument
[all...]
H A Dcode-stubs-ia32.h189 Register scratch,
199 Register scratch, // Neither of above.
223 Register scratch);
227 Register scratch);
230 Register scratch);
/external/v8/src/arm/
H A Dmacro-assembler-arm.cc258 Register scratch,
260 if (scratch.is(no_reg)) {
265 mov(scratch, reg1, LeaveCC, cond);
267 mov(reg2, scratch, LeaveCC, cond);
345 Register scratch,
352 ASSERT(!scratch.is(dst));
357 and_(scratch, src, Operand((1 << width) - 1));
358 mov(scratch, Operand(scratch, LSL, lsb));
359 orr(dst, dst, scratch);
256 Swap(Register reg1, Register reg2, Register scratch, Condition cond) argument
[all...]
H A Dlithium-codegen-arm.cc287 Register LCodeGen::EmitLoadRegister(LOperand* op, Register scratch) { argument
291 __ mov(scratch, ToOperand(op));
292 return scratch;
294 __ ldr(scratch, ToMemOperand(op));
295 return scratch;
298 return scratch;
863 Register scratch = scratch0(); local
874 ASSERT(!scratch.is(left));
875 ASSERT(!scratch.is(right));
876 ASSERT(!scratch
983 const Register scratch = scratch0(); local
1081 Register scratch = scratch0(); local
1153 Register scratch = scratch0(); local
1420 Register scratch = scratch0(); local
1454 Register scratch = scratch0(); local
1560 Register scratch = scratch0(); local
1647 Register scratch = result; local
1663 Register scratch = scratch0(); local
1820 Register scratch = scratch0(); local
1852 Register scratch = scratch0(); local
1866 Register scratch = scratch0(); local
2227 Register scratch = scratch0(); local
2316 Register scratch = scratch0(); local
2368 Register scratch = scratch0(); local
2414 Register scratch = scratch0(); local
2467 Register scratch = scratch0(); local
2537 Register scratch = scratch0(); local
2580 Register scratch = scratch0(); local
2731 Register scratch = scratch0(); local
2906 Register scratch = scratch0(); local
2923 Register scratch = scratch0(); local
3110 Register scratch = scratch0(); local
3162 Register scratch = scratch0(); local
3246 Register scratch = scratch0(); local
3345 Register scratch = scratch0(); local
3435 Register scratch = scratch0(); local
3521 Register scratch = scratch0(); local
3575 Register scratch = scratch0(); local
3794 Register scratch = scratch0(); local
3825 Register scratch = scratch0(); local
4056 Register scratch = scratch0(); local
[all...]
H A Dmacro-assembler-arm.h119 // Swap two registers. If the scratch register is omitted then a slightly
123 Register scratch = no_reg,
133 // The scratch register is not used for ARMv7.
134 // scratch can be the same register as src (in which case it is trashed), but
138 Register scratch,
163 // scratch can be object itself, but it will be clobbered.
165 Register scratch,
174 Register scratch);
178 // of an allocated page. The 'scratch' registers are used in the
194 Register scratch);
862 TrySmiTag(Register reg, Label* not_a_smi, Register scratch) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DPathSkia.cpp233 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
[all...]
/external/webkit/Tools/android/webkitmerge/
H A Dwebkitmerge.cpp156 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, "dif
1449 doSystem(char* scratch) argument
1456 copyToCommand(char* scratch, string file) argument
1495 char scratch[1024]; local
[all...]
/external/icu4c/common/unicode/
H A Dbytestream.h72 * 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,
175 * @param scratch default caller-owned buffer
176 * @param scratch_capacity capacity of the scratch buffer
184 char* scratch, int32_t scratch_capacity,
/external/webkit/Source/JavaScriptCore/jit/
H A DJSInterfaceJIT.h194 inline Jump emitLoadDouble(unsigned virtualRegisterIndex, FPRegisterID dst, RegisterID scratch);
266 inline JSInterfaceJIT::Jump JSInterfaceJIT::emitLoadDouble(unsigned virtualRegisterIndex, FPRegisterID dst, RegisterID scratch)
269 loadPtr(tagFor(virtualRegisterIndex), scratch);
270 Jump isDouble = branch32(Below, scratch, TrustedImm32(JSValue::LowestTag));
271 Jump notInt = branch32(NotEqual, scratch, TrustedImm32(JSValue::Int32Tag));
272 loadPtr(payloadFor(virtualRegisterIndex), scratch);
273 convertInt32ToDouble(scratch, dst);
305 inline JSInterfaceJIT::Jump JSInterfaceJIT::emitLoadDouble(unsigned virtualRegisterIndex, FPRegisterID dst, RegisterID scratch)
307 loadPtr(addressFor(virtualRegisterIndex), scratch);
308 Jump notNumber = emitJumpIfNotImmediateNumber(scratch);
[all...]
/external/webkit/Source/WebCore/platform/graphics/android/
H A DPathAndroid.cpp290 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
[all...]
/external/icu4c/test/intltest/
H A Dstrtest.cpp398 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[1 local
[all...]
/external/v8/src/x64/
H A Dmacro-assembler-x64.cc64 Register scratch) {
72 movq(scratch, target);
73 return Operand(scratch, 0);
138 // Operand is lea(scratch, Operand(kRootRegister, delta));
201 Register scratch) {
205 InNewSpace(object, scratch, not_equal, &not_in_new_space);
285 Register scratch,
308 InNewSpace(object, scratch, equal, &done);
327 RecordWriteHelper(object, dst, scratch);
335 movq(scratch, BitCas
63 ExternalOperand(ExternalReference target, Register scratch) argument
199 RecordWriteHelper(Register object, Register addr, Register scratch) argument
283 RecordWriteNonSmi(Register object, int offset, Register scratch, Register index) argument
1849 Ret(int bytes_dropped, Register scratch) argument
2300 CheckAccessGlobalProxy(Register holder_reg, Register scratch, Label* miss) argument
2363 LoadAllocationTopHelper(Register result, Register scratch, AllocationFlags flags) argument
2393 UpdateAllocationTopHelper(Register result_end, Register scratch) argument
2413 AllocateInNewSpace(int object_size, Register result, Register result_end, Register scratch, Label* gc_required, AllocationFlags flags) argument
2469 AllocateInNewSpace(int header_size, ScaleFactor element_size, Register element_count, Register result, Register result_end, Register scratch, Label* gc_required, AllocationFlags flags) argument
2518 AllocateInNewSpace(Register object_size, Register result, Register result_end, Register scratch, Label* gc_required, AllocationFlags flags) argument
2579 AllocateHeapNumber(Register result, Register scratch, Label* gc_required) argument
2716 CopyBytes(Register destination, Register source, Register length, int min_length, Register scratch) argument
[all...]
/external/blktrace/btt/
H A Dtrace.c59 char scratch[15]; local
69 make_dev_hdr(scratch, 15, iop->dip, 1),
/external/qemu/distrib/sdl-1.2.12/src/video/Xext/Xinerama/
H A DXinerama.c296 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 1426 milliseconds

12345