/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/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/v8/src/mips/ |
macro-assembler-mips.h | 196 // 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); [all...] |
/external/v8/src/x64/ |
macro-assembler-x64.cc | 64 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, ¬_in_new_space); 285 Register scratch, 308 InNewSpace(object, scratch, equal, &done); 327 RecordWriteHelper(object, dst, scratch); 335 movq(scratch, BitCast<int64_t>(kZapValue), RelocInfo::NONE) [all...] |
macro-assembler-x64.h | 47 // Default scratch register used by MacroAssembler (and other code that needs 101 // May emit code to set up the scratch register. The operand is 102 // only guaranteed to be correct as long as the scratch register 104 // If the operand is used more than once, use a scratch register 107 Register scratch = kScratchRegister); 144 Register scratch); 148 // space. The register scratch can be object itself, but it will be clobbered. 151 Register scratch, 157 // object being stored. If |offset| is zero, then the |scratch| 165 Register scratch); [all...] |
/external/blktrace/btt/ |
trace.c | 59 char scratch[15]; local 69 make_dev_hdr(scratch, 15, iop->dip, 1),
|
/external/v8/src/ia32/ |
code-stubs-ia32.cc | 313 Register scratch, 318 static void LoadFloatSmis(MacroAssembler* masm, Register scratch); 325 Register scratch); 367 static void LoadSSE2Smis(MacroAssembler* masm, Register scratch); 373 Register scratch); 1911 Register scratch = ebx; local 2353 __ mov(Operand(esp, 0), scratch); local 3307 Register scratch = scratch2; local 4156 Register scratch = ecx; local 4968 __ mov_b(Operand(dest, 0), scratch); local 4973 __ mov_w(Operand(dest, 0), scratch); local 5032 __ mov_b(Operand(dest, 0), scratch); local 5051 Register scratch = scratch3; local [all...] |
code-stubs-ia32.h | 189 Register scratch, 199 Register scratch, // Neither of above. 223 Register scratch); 227 Register scratch); 230 Register scratch);
|
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.
|
stub-cache-ia32.cc | 210 Register scratch, 225 ASSERT(!scratch.is(receiver)); 226 ASSERT(!scratch.is(name)); 229 ASSERT(!extra.is(scratch)); 231 // Check scratch and extra registers are valid, and extra2 is unused. 232 ASSERT(!scratch.is(no_reg)); 240 __ mov(scratch, FieldOperand(name, String::kHashFieldOffset)); 241 __ add(scratch, FieldOperand(receiver, HeapObject::kMapOffset)); 242 __ xor_(scratch, flags); 243 __ and_(scratch, (kPrimaryTableSize - 1) << kHeapObjectTagSize) 403 Register scratch = name; local 1709 Register scratch = edx; local [all...] |
/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;
|
/frameworks/base/media/libstagefright/codecs/aacdec/ |
getics.cpp | 577 pVars->scratch.huffbook_used); 625 pVars->scratch.tns_decode_coef); 662 pVars->scratch.tmp_spec,
|
get_adif_header.cpp | 39 Description: The ADIF_Header has now been delegated to the "scratch memory" 56 pScratchPCE = pointer to a ProgConfig structure used as scratch in the 303 ADIF_Header *pHeader = &pVars->scratch.adif_header;
|
get_ga_specific_config.cpp | 34 Description: Updated to use scratch memory for the temporary prog config. 366 &pVars->scratch.scratch_prog_config);
|
s_tdec_int_file.h | 29 Description: Added declaration of scratch memory, scratchTnsDecCoefMem, 51 (1) Moved scratch_prog_config into the scratch union. 182 * For eaac+, a scratch matrix is created with the rigth element ( perChan[1] is not used) 219 * by only one function. This is the simplest type of scratch 237 } scratch; member in struct:__anon15048
|
/development/ndk/tests/prebuilt-library/jni/ |
Android.mk | 3 # Define BUILD_FOO=1 to rebuild libfoo.so from scratch, then
|
/external/chromium/base/ |
process_util_posix.cc | 426 char *scratch = reinterpret_cast<char*>(buffer + sizeof(char*) * count); local 433 ret[k++] = scratch; 434 memcpy(scratch, pair, len + 1); 435 scratch += len + 1; 445 ret[k++] = scratch; 446 memcpy(scratch, pair, keylen + 1); 447 scratch += keylen + 1; 448 memcpy(scratch, j->second.c_str(), j->second.size() + 1); 449 scratch += j->second.size() + 1; 458 ret[k++] = scratch; [all...] |
/external/v8/src/arm/ |
stub-cache-arm.cc | 48 Register scratch, 62 Register offsets_base_addr = scratch; 211 Register scratch, 225 ASSERT(!scratch.is(receiver)); 226 ASSERT(!scratch.is(name)); 229 ASSERT(!extra.is(scratch)); 232 ASSERT(!extra2.is(scratch)); 235 // Check scratch, extra and extra2 registers are valid. 236 ASSERT(!scratch.is(no_reg)); 245 __ ldr(scratch, FieldMemOperand(name, String::kHashFieldOffset)) 559 Register scratch = name; local 1835 Register scratch = r3; local 3233 Register scratch = r3; local [all...] |
/external/openssl/crypto/bn/asm/ |
via-mont.pl | 97 $scratch=&DWP(20,"esp"); 100 # &DWP(32,"esp") # 32 byte scratch area 145 &lea ("edi",&DWP(32,"esp")); # scratch area 146 &mov ($scratch,"edi"); 155 &lea ("ecx",&DWP((32+$pad)/4,"ecx"));# padded tp + scratch 226 &mov ("edi","esp"); # zap frame including scratch area
|
/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);
|
/frameworks/base/services/surfaceflinger/DisplayHardware/ |
HWComposer.h | 71 void dump(String8& out, char* scratch, size_t SIZE,
|
/frameworks/base/services/surfaceflinger/ |
LayerBase.h | 210 virtual void dump(String8& result, char* scratch, size_t size) const; 211 virtual void shortDump(String8& result, char* scratch, size_t size) const; 309 virtual void dump(String8& result, char* scratch, size_t size) const; 310 virtual void shortDump(String8& result, char* scratch, size_t size) const;
|
/external/clang/lib/Analysis/ |
UninitializedValues.cpp | 103 ValueVector scratch; member in class:__anon4263::CFGBlockValues 128 ValueVector &getScratch() { return scratch; } 155 scratch.resize(declToIndex.size()); 238 scratch = source; 240 scratch |= source; 245 bool changed = (dst != scratch); 247 dst = scratch; 249 printVector(block, scratch, 0); 269 scratch.reset(); 275 return scratch[idx.getValue()] [all...] |
/external/skia/src/animator/ |
SkDisplayEvent.cpp | 165 char scratch[8]; local 167 size_t size = convert > 0 ? SkUTF8_FromUnichar(convert, scratch) : 0; 168 fKeyString.set(scratch, size); 173 size = SkUTF8_FromUnichar(fMax, scratch); 174 value->fOperand.fString->append(scratch, size);
|
/external/webkit/Source/WebKit/android/nav/ |
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);
|