Searched refs:amount (Results 1 – 7 of 7) sorted by relevance
/system/core/libpixelflinger/codeflinger/ |
D | Arm64Assembler.cpp | 375 uint32_t amount; in dataProcessingCommon() local 381 amount = mAddrMode.reg_imm_shift; in dataProcessingCommon() 387 amount = 0; in dataProcessingCommon() 398 case opADD: *mPC++ = A64_ADD_W(Rd, Rn, Rm, shift, amount); break; in dataProcessingCommon() 399 case opAND: *mPC++ = A64_AND_W(Rd, Rn, Rm, shift, amount); break; in dataProcessingCommon() 400 case opORR: *mPC++ = A64_ORR_W(Rd, Rn, Rm, shift, amount); break; in dataProcessingCommon() 401 case opMVN: *mPC++ = A64_ORN_W(Rd, Rn, Rm, shift, amount); break; in dataProcessingCommon() 402 case opSUB: *mPC++ = A64_SUB_W(Rd, Rn, Rm, shift, amount, s);break; in dataProcessingCommon() 473 int amount = mAddrMode.reg_imm_shift; in ADDR_ADD() local 474 *mPC++ = A64_ADD_X_Wm_SXTW(Rd, Rn, Rm, amount); in ADDR_ADD() [all …]
|
D | Arm64Assembler.h | 205 uint32_t amount); 207 uint32_t amount); 215 uint32_t Rm, uint32_t shift = 0, uint32_t amount = 0); 217 uint32_t shift = 0, uint32_t amount = 0); 219 uint32_t shift = 0, uint32_t amount = 0, 222 uint32_t Rm, uint32_t shift = 0, uint32_t amount = 0); 224 uint32_t Rm, uint32_t shift = 0, uint32_t amount = 0); 226 uint32_t Rm, uint32_t shift = 0, uint32_t amount = 0);
|
/system/core/libutils/ |
D | VectorImpl.cpp | 375 void* VectorImpl::_grow(size_t where, size_t amount) in _grow() argument 382 this, (int)where, (int)amount, (int)mCount); // caller already checked in _grow() 385 LOG_ALWAYS_FATAL_IF(!safe_add(&new_size, mCount, amount), "new_size overflow"); in _grow() 428 void* dest = reinterpret_cast<uint8_t *>(array) + (where+amount)*mItemSize; in _grow() 441 void* to = reinterpret_cast<uint8_t *>(array) + (where+amount)*mItemSize; in _grow() 450 void VectorImpl::_shrink(size_t where, size_t amount) in _shrink() argument 458 ALOG_ASSERT(where + amount <= mCount, in _shrink() 460 this, (int)where, (int)amount, (int)mCount); // caller already checked in _shrink() 463 LOG_ALWAYS_FATAL_IF(!safe_sub(&new_size, mCount, amount)); in _shrink() 494 … const void* from = reinterpret_cast<const uint8_t *>(mStorage) + (where+amount)*mItemSize; in _shrink() [all …]
|
/system/vold/ |
D | MoveTask.cpp | 30 #define CONSTRAIN(amount, low, high) (amount < low ? low : (amount > high ? high : amount)) argument
|
/system/core/include/utils/ |
D | VectorImpl.h | 110 void* _grow(size_t where, size_t amount); 111 void _shrink(size_t where, size_t amount);
|
/system/bt/doc/ |
D | properties.md | 8 Maximum amount of time Bluetooth can take to start-up, upload firmware etc.
|
/system/core/fastboot/ |
D | fastboot_protocol.txt | 48 send the indicated amount of data. Short packets are always
|