/external/protobuf/python/google/protobuf/internal/ |
wire_format_test.py | 201 def __init__(self, byte_size): 202 self.byte_size = byte_size 204 return self.byte_size 207 mock_message = MockMessage(byte_size=message_byte_size) 218 self.assertEqual(2 + mock_message.byte_size, 221 self.assertEqual(3 + mock_message.byte_size, 224 mock_message.byte_size = 128 225 self.assertEqual(4 + mock_message.byte_size, 232 mock_message.byte_size = 1 [all...] |
/external/elfutils/tests/ |
run-show-die-info.sh | 55 Attrs : name byte_size encoding 79 Attrs : name byte_size encoding 123 Attrs : name byte_size encoding 153 Attrs : name byte_size encoding 164 Attrs : name byte_size encoding 185 Attrs : name byte_size encoding 191 Attrs : sibling name byte_size decl_file decl_line 217 Attrs : name byte_size encoding 223 Attrs : byte_size 239 Attrs : name byte_size encodin [all...] |
/external/chromium/chrome/browser/safe_browsing/ |
bloom_filter.cc | 140 int byte_size = static_cast<int>(remaining64); local 141 scoped_array<char> data(new char[byte_size]); 142 bytes_read = filter.Read(data.get(), byte_size, NULL); 143 if (bytes_read < byte_size) { 146 } else if (bytes_read != byte_size) { 152 return new BloomFilter(data.release(), byte_size, hash_keys);
|
/frameworks/base/tests/LowStorageTest/src/com/android/lowstoragetest/ |
LowStorageTest.java | 38 static final int BYTE_SIZE = 1024; 56 startSizeTextView.setText(Long.toString((totalBlocks * mBlockSize) / BYTE_SIZE)); 125 freeSizeTextView.setText(Long.toString((availableBlocks * mBlockSize) / BYTE_SIZE));
|
/external/protobuf/src/google/protobuf/ |
message_lite.cc | 279 int byte_size = ByteSize(); local 280 STLStringResizeUninitialized(output, old_size + byte_size); 283 if (end - start != byte_size) { 284 ByteSizeConsistencyError(byte_size, ByteSize(), end - start); 305 int byte_size = ByteSize(); local 306 if (size < byte_size) return false; 309 if (end - start != byte_size) { 310 ByteSizeConsistencyError(byte_size, ByteSize(), end - start);
|
/external/llvm/lib/Support/ |
DataExtractor.cpp | 92 DataExtractor::getUnsigned(uint32_t *offset_ptr, uint32_t byte_size) const { 93 switch (byte_size) { 107 DataExtractor::getSigned(uint32_t *offset_ptr, uint32_t byte_size) const { 108 switch (byte_size) {
|
/external/llvm/include/llvm/Support/ |
DataExtractor.h | 62 /// Extract an unsigned integer of size \a byte_size from \a 67 /// is specified by the \a byte_size argument. \a byte_size should 70 /// \a byte_size values less than 1 or greater than 8 will result in 80 /// @param[in] byte_size 86 uint64_t getUnsigned(uint32_t *offset_ptr, uint32_t byte_size) const; 88 /// Extract an signed integer of size \a byte_size from \a *offset_ptr. 92 /// the extracted integer is specified by the \a byte_size argument. 93 /// \a byte_size should have a value greater than or equal to one 95 /// bits wide. Any \a byte_size values less than 1 or greater tha [all...] |
/external/libnfc-nxp/src/ |
phDnldNfc.c | [all...] |
phHciNfc_DevMgmt.c | 407 params[i++] = (uint8_t)(address >> BYTE_SIZE); 458 params[i++] = (uint8_t)(address >> BYTE_SIZE); 603 ( NXP_NFC_IFC_CONFIG_DEFAULT >> BYTE_SIZE ) /* 0x03 */; [all...] |
phHciNfc_Generic.h | 111 #define BYTE_SIZE 0x08U 115 ( ( (((uint8_t)(p))+((uint8_t)(l)))<=BYTE_SIZE )? \ 119 ( ((((uint8_t)(p))+((uint8_t)(l)))<=BYTE_SIZE)? \ 123 ( ((((p)+(l))<=BYTE_SIZE))? \ 127 ( ((((uint8_t)(p))+((uint8_t)(l)))<=BYTE_SIZE)? \ [all...] |
phHal4Nfc.c | 601 config_type = ((config_type << BYTE_SIZE ) 628 config_type = ((config_type << BYTE_SIZE ) 864 (((PH_HAL4NFC_INTERFACE_VERSION << BYTE_SIZE) 865 |(PH_HAL4NFC_INTERFACE_REVISION)<<BYTE_SIZE) 866 |(PH_HAL4NFC_INTERFACE_PATCH)<<BYTE_SIZE [all...] |
phHciNfc_IDMgmt.c | 796 (uint32_t)(reg_value[VERSION_LEN - i - 1] << (BYTE_SIZE * i)); 807 (uint32_t)(reg_value[VERSION_LEN - i - 1] << (BYTE_SIZE * i));
|
phHciNfc_PollingLoop.c | 417 pl_duration = (uint16_t)((pl_duration << BYTE_SIZE) | 418 ((uint8_t)(pl_duration >> BYTE_SIZE)));
|
phHciNfc_LinkMgmt.c | 467 (uint16_t)(reg_value[i] << (BYTE_SIZE * i));
|
/external/libnfc-nxp/inc/ |
phNfcInterface.h | 118 #define BYTE_SIZE 0x08U 122 ( ( (((uint8_t)(p))+((uint8_t)(l)))<=BYTE_SIZE )? \ 126 ( ((((uint8_t)(p))+((uint8_t)(l)))<=BYTE_SIZE)? \ 130 ( ((((p)+(l))<=BYTE_SIZE))? \ 134 ( ((((uint8_t)(p))+((uint8_t)(l)))<=BYTE_SIZE)? \
|
/external/v8/src/ |
heap-inl.h | 383 void Heap::CopyBlock(Address dst, Address src, int byte_size) { 386 byte_size / kPointerSize); 390 void Heap::MoveBlock(Address dst, Address src, int byte_size) { 391 ASSERT(IsAligned(byte_size, kPointerSize)); 393 int size_in_words = byte_size / kPointerSize; 395 if ((dst < src) || (dst >= (src + byte_size))) { 404 memmove(dst, src, byte_size);
|
/external/linux-tools-perf/util/ |
session.h | 121 void mem_bswap_64(void *src, int byte_size);
|
session.c | 365 void mem_bswap_64(void *src, int byte_size) 369 while (byte_size > 0) { 371 byte_size -= sizeof(u64); [all...] |
/external/v8/src/x64/ |
disasm-x64.cc | 199 void SetTableRange(InstructionType type, byte start, byte end, bool byte_size, 251 bool byte_size, 258 id->byte_size_operation = byte_size; 331 BYTE_SIZE = 0, 367 if (byte_size_operand_) return BYTE_SIZE; 560 case BYTE_SIZE: 680 OperandSize immediate_size = byte_size_immediate ? BYTE_SIZE : operand_size(); [all...] |
/external/chromium/base/ |
string_util.cc | 260 const size_t byte_size, 263 if (byte_size > input.length()) { 267 DCHECK_LE(byte_size, static_cast<uint32>(kint32max)); 269 int32 truncation_length = static_cast<int32>(byte_size); [all...] |
string_util_unittest.cc | 59 bool Truncated(const std::string& input, const size_t byte_size, 62 TruncateUTF8ToByteSize(input, byte_size, output); 71 // Empty strings and invalid byte_size arguments [all...] |
/external/bluetooth/bluedroid/stack/rfcomm/ |
rfc_int.h | 123 UINT8 byte_size; member in struct:__anon3497::__anon3498::__anon3503
|
rfc_port_fsm.c | 896 port_pars->byte_size = p_frame->u.rpn.byte_size;
|
rfc_ts_frames.c | 477 *p_data++ = (p_pars->byte_size << RFCOMM_RPN_BITS_SHIFT) 865 p_rx_frame->u.rpn.byte_size = (*p_data >> RFCOMM_RPN_BITS_SHIFT) & RFCOMM_RPN_BITS_MASK;
|
/prebuilts/tools/common/m2/internal/org/apache/ant/ant-launcher/1.8.0/ |
ant-launcher-1.8.0.jar | |