HomeSort by relevance Sort by last modified time
    Searched refs:scratch (Results 101 - 125 of 318) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_screen.h 87 __volatile__ uint32_t *scratch; member in struct:radeon_screen
  /external/chromium_org/third_party/openssl/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/mesa3d/src/mesa/drivers/dri/radeon/
radeon_screen.h 87 __volatile__ uint32_t *scratch; member in struct:radeon_screen
  /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
  /frameworks/native/services/sensorservice/
SensorService.h 89 void countFlushCompleteEventsLocked(sensors_event_t const* scratch, int numEventsDropped);
96 int findWakeUpSensorEventLocked(sensors_event_t const* scratch, int count);
113 void reAllocateCacheLocked(sensors_event_t const* scratch, int count);
175 sensors_event_t* scratch,
  /external/chromium_org/third_party/leveldatabase/
env_chromium_win.cc 60 virtual Status Read(size_t n, Slice* result, char* scratch) {
64 if (ReadFile(file_, scratch, n, &bytes_read, NULL)) {
65 *result = Slice(scratch, bytes_read);
72 *result = Slice(scratch, bytes_read);
104 virtual Status Read(uint64_t offset, size_t n, Slice* result, char* scratch)
107 int r = file_.Read(offset, scratch, n);
108 *result = Slice(scratch, (r < 0) ? 0 : r);
env_chromium_stdio.cc 79 virtual Status Read(size_t n, Slice* result, char* scratch) {
81 size_t r = fread_unlocked(scratch, 1, n, file_);
82 *result = Slice(scratch, r);
119 virtual Status Read(uint64_t offset, size_t n, Slice* result, char* scratch)
122 int r = file_.Read(offset, scratch, n);
123 *result = Slice(scratch, (r < 0) ? 0 : r);
  /external/chromium_org/third_party/leveldatabase/src/db/
log_test.cc 61 virtual Status Read(size_t n, Slice* result, char* scratch) {
135 std::string scratch; local
137 if (reader_.ReadRecord(&record, &scratch)) {
199 std::string scratch; local
200 ASSERT_TRUE(!offset_reader->ReadRecord(&record, &scratch));
212 std::string scratch; local
213 ASSERT_TRUE(offset_reader->ReadRecord(&record, &scratch));
  /external/chromium_org/v8/src/arm64/
lithium-codegen-arm64.cc 154 const FPRegister& scratch)
155 : BranchGenerator(codegen), value_(value), scratch_(scratch) { }
719 Register scratch = x3; local
728 // Update the write barrier. This clobbers value and scratch.
730 __ RecordWriteContextSlot(cp, target.offset(), value, scratch,
1669 Register scratch = x5; local
1943 Register scratch = NoReg; local
2235 Register scratch = ToRegister(instr->temp()); local
2299 Register scratch = ToRegister(instr->temp1()); local
2454 Register scratch = ToRegister(instr->temp()); local
3023 Register scratch = ToRegister(instr->temp()); local
3091 Register scratch = x10; local
3241 Register scratch = ToRegister(instr->temp2()); local
3276 Register scratch = ToRegister(instr->temp()); local
3444 Register scratch; local
3601 Register scratch = ToRegister(instr->temp()); local
4389 Register scratch = result; local
4648 Register scratch = ToRegister(instr->temp()); local
5110 Register scratch = ToRegister(instr->temp()); local
5170 Register scratch; local
5280 Register scratch = no_reg; local
5837 Register scratch = ToRegister(instr->temp2()); local
5848 Register scratch = ToRegister(instr->temp2()); local
5866 Register scratch = ToRegister(instr->temp1()); local
5888 Register scratch = ToRegister(instr->temp2()); local
    [all...]
macro-assembler-arm64.h     [all...]
ic-arm64.cc 90 // The scratch registers need to be different from elements, name and result.
192 Register scratch,
195 ASSERT(!AreAliased(map_scratch, scratch));
202 __ Ldrb(scratch, FieldMemOperand(map_scratch, Map::kBitFieldOffset));
203 __ Tbnz(scratch, Map::kIsAccessCheckNeeded, slow);
204 __ Tbnz(scratch, interceptor_bit, slow);
211 __ Ldrb(scratch, FieldMemOperand(map_scratch, Map::kInstanceTypeOffset));
212 __ Cmp(scratch, JS_OBJECT_TYPE);
229 // taken. Otherwise, this is used as a scratch register.
258 // was handled above. From this point onward it is a scratch register
808 Register scratch = x3; local
    [all...]
code-stubs-arm64.h 50 Register scratch);
107 value) { // One scratch reg.
188 Register scratch)
191 scratch0_(scratch),
194 ASSERT(!AreAliased(scratch, object, address));
197 // registers, but we don't bother saving MacroAssembler scratch registers.
201 // We would like to require more scratch registers for this stub,
204 // We allocate 2 extra scratch registers that we'll save on the stack.
206 CPURegList used_regs(object, address, scratch);
211 // The scratch registers will be restored by other means so we don't nee
    [all...]
  /external/chromium_org/v8/src/x87/
lithium-gap-resolver-x87.cc 238 Register scratch = Register::FromAllocationIndex(i); local
239 __ push(scratch);
241 return scratch;
246 Register scratch = Register::FromAllocationIndex(0); local
247 __ push(scratch);
249 return scratch;
stub-cache-x87.cc 168 Register scratch,
182 ASSERT(!scratch.is(receiver));
183 ASSERT(!scratch.is(name));
186 ASSERT(!extra.is(scratch));
188 // Assert scratch and extra registers are valid, and extra2/3 are unused.
189 ASSERT(!scratch.is(no_reg));
193 Register offset = scratch;
194 scratch = no_reg;
255 Register scratch = prototype; local
257 __ mov(scratch, Operand(esi, offset))
328 Register scratch = name; local
382 Register scratch = edi; \/\/ scratch_in is no longer valid. local
    [all...]
ic-x87.cc 97 // Scratch registers:
206 // Scratch registers:
235 Register scratch,
242 // Scratch registers:
243 // scratch - used to hold elements of the receiver and the loaded value.
247 __ mov(scratch, FieldOperand(receiver, JSObject::kElementsOffset));
250 __ CheckMap(scratch,
255 __ AssertFastElements(scratch);
258 __ cmp(key, FieldOperand(scratch, FixedArray::kLengthOffset));
262 __ mov(scratch, FieldOperand(scratch, key, times_2, FixedArray::kHeaderSize))
573 Register scratch = ebx; local
    [all...]
code-stubs-x87.h 45 Register scratch,
52 Register scratch);
56 Register scratch);
59 Register scratch);
108 Register scratch,
192 value) { // One scratch reg.
251 // This is a helper class for freeing up 3 scratch registers, where the third
253 // that must be preserved and one scratch register provided by the caller.
286 // a scratch register. But if we had to switch to a different reg then
328 // registers are eax, ecx and edx. The three scratch registers (incl. ecx
    [all...]
  /external/chromium_org/v8/src/arm/
ic-arm.cc 53 // Scratch registers:
93 // The two scratch registers need to be different from elements, name and
104 // Main use of the scratch registers.
142 // The two scratch registers need to be different from elements, name and
153 // Main use of the scratch registers.
198 Register scratch,
206 __ ldrb(scratch, FieldMemOperand(map, Map::kBitFieldOffset));
207 __ tst(scratch,
215 __ ldrb(scratch, FieldMemOperand(map, Map::kInstanceTypeOffset));
216 __ cmp(scratch, Operand(JS_OBJECT_TYPE))
742 Register scratch = r3; local
    [all...]
code-stubs-arm.cc 501 // scratch register. Destroys the source register. No GC occurs during this
570 // We use mantissa as a scratch register here. Use a fudge factor to
603 Register scratch = GetRegisterThatIsNotOneOf(input_reg, result_reg); local
605 GetRegisterThatIsNotOneOf(input_reg, result_reg, scratch);
607 GetRegisterThatIsNotOneOf(input_reg, result_reg, scratch, scratch_low);
610 __ Push(scratch_high, scratch_low, scratch);
622 __ sub(scratch, result_reg, Operand(1));
623 __ cmp(scratch, Operand(0x7ffffffe));
636 __ Ubfx(scratch, scratch_high,
638 // Load scratch with exponent - 1. This is faster than loadin
1215 const Register scratch = r1; local
1246 const Register scratch = r9; local
1797 const Register scratch = r2; local
    [all...]
  /external/chromium_org/v8/src/ia32/
stub-cache-ia32.cc 168 Register scratch,
182 ASSERT(!scratch.is(receiver));
183 ASSERT(!scratch.is(name));
186 ASSERT(!extra.is(scratch));
188 // Assert scratch and extra registers are valid, and extra2/3 are unused.
189 ASSERT(!scratch.is(no_reg));
193 Register offset = scratch;
194 scratch = no_reg;
255 Register scratch = prototype; local
257 __ mov(scratch, Operand(esi, offset))
328 Register scratch = name; local
382 Register scratch = edi; \/\/ scratch_in is no longer valid. local
    [all...]
ic-ia32.cc 97 // Scratch registers:
206 // Scratch registers:
235 Register scratch,
242 // Scratch registers:
243 // scratch - used to hold elements of the receiver and the loaded value.
247 __ mov(scratch, FieldOperand(receiver, JSObject::kElementsOffset));
250 __ CheckMap(scratch,
255 __ AssertFastElements(scratch);
258 __ cmp(key, FieldOperand(scratch, FixedArray::kLengthOffset));
262 __ mov(scratch, FieldOperand(scratch, key, times_2, FixedArray::kHeaderSize))
573 Register scratch = ebx; local
    [all...]
code-stubs-ia32.h 47 Register scratch,
54 Register scratch);
58 Register scratch);
61 Register scratch);
110 Register scratch,
196 value) { // One scratch reg.
255 // This is a helper class for freeing up 3 scratch registers, where the third
257 // that must be preserved and one scratch register provided by the caller.
290 // a scratch register. But if we had to switch to a different reg then
332 // registers are eax, ecx and edx. The three scratch registers (incl. ecx
    [all...]
  /external/chromium_org/v8/src/mips/
code-stubs-mips.cc 494 // scratch register. Destroys the source register. No GC occurs during this
573 // We use mantissa as a scratch register here.
602 Register scratch = local
605 GetRegisterThatIsNotOneOf(input_reg, result_reg, scratch);
607 GetRegisterThatIsNotOneOf(input_reg, result_reg, scratch, scratch2);
610 __ Push(scratch, scratch2, scratch3);
626 __ cfc1(scratch, FCSR);
631 scratch, scratch,
636 __ Branch(&error, ne, scratch, Operand(zero_reg))
1287 const Register scratch = a1; local
1314 const Register scratch = t5; local
1912 const Register scratch = a2; local
5327 Register scratch = call_data; local
    [all...]
  /external/chromium_org/net/websockets/
websocket_frame_test.cc 311 scoped_ptr<char, base::AlignedFreeDeleter> scratch(
319 char* const aligned_scratch = scratch.get() + alignment;
361 std::vector<char> scratch(payload, payload + size);
376 masking_key, x % size, &scratch.front(), scratch.size());
  /external/chromium_org/v8/src/x64/
code-stubs-x64.cc 621 const Register scratch = rcx; local
630 __ movp(scratch, Immediate(1));
631 __ Cvtlsi2sd(double_result, scratch);
692 __ movq(scratch, V8_UINT64_C(0x3FE0000000000000));
693 __ movq(double_scratch, scratch);
702 __ movq(scratch, V8_UINT64_C(0xFFF0000000000000));
703 __ movq(double_scratch, scratch);
734 __ movq(scratch, V8_UINT64_C(0xFFF0000000000000));
735 __ movq(double_scratch, scratch);
800 __ movp(scratch, exponent); // Back up exponent
4152 Register scratch = result_; local
4929 Register scratch = call_data; local
5017 Register scratch = rax; local
    [all...]
  /external/clang/lib/Analysis/
UninitializedValues.cpp 109 ValueVector scratch; member in class:__anon21597::CFGBlockValues
147 scratch.resize(decls);
168 for (unsigned I = 0, E = scratch.size(); I != E; ++I)
169 scratch[I] = V;
175 scratch = source;
177 scratch |= source;
182 bool changed = (dst != scratch);
184 dst = scratch;
186 printVector(block, scratch, 0);
192 scratch.reset()
    [all...]

Completed in 789 milliseconds

1 2 3 45 6 7 8 91011>>