Searched refs:byte_limit (Results 1 – 9 of 9) sorted by relevance
/external/protobuf/php/src/Google/Protobuf/Internal/ |
D | CodedInputStream.php | 322 public function pushLimit($byte_limit) argument 330 if ($byte_limit >= 0 && 331 $byte_limit <= PHP_INT_MAX - $current_position && 332 $byte_limit <= $this->current_limit - $current_position) { 333 $this->current_limit = $current_position + $byte_limit; 347 public function popLimit($byte_limit) argument 349 $this->current_limit = $byte_limit; 357 $byte_limit, &$old_limit, &$recursion_budget) argument 359 $old_limit = $this->pushLimit($byte_limit); 363 public function decrementRecursionDepthAndPopLimit($byte_limit) argument [all …]
|
/external/webrtc/modules/video_coding/utility/ |
D | ivf_file_writer.cc | 27 IvfFileWriter::IvfFileWriter(FileWrapper file, size_t byte_limit) in IvfFileWriter() argument 30 byte_limit_(byte_limit), in IvfFileWriter() 37 RTC_DCHECK(byte_limit == 0 || kIvfHeaderSize <= byte_limit) in IvfFileWriter() 46 size_t byte_limit) { in Wrap() argument 48 new IvfFileWriter(std::move(file), byte_limit)); in Wrap()
|
D | ivf_file_writer.h | 34 size_t byte_limit); 41 explicit IvfFileWriter(FileWrapper file, size_t byte_limit);
|
/external/mesa3d/src/intel/tools/ |
D | i965_asm.c | 73 int byte_limit; in print_instruction() local 75 byte_limit = (compact == true) ? 8 : 16; in print_instruction() 81 for (unsigned i = 1; i < byte_limit; i++) { in print_instruction() 89 for (unsigned i = 1; i < byte_limit / 4; i++) in print_instruction() 95 fwrite(instruction, 1, byte_limit, output); in print_instruction()
|
/external/protobuf/src/google/protobuf/io/ |
D | coded_stream.cc | 117 CodedInputStream::Limit CodedInputStream::PushLimit(int byte_limit) { in PushLimit() argument 126 if (PROTOBUF_PREDICT_TRUE(byte_limit >= 0 && in PushLimit() 127 byte_limit <= INT_MAX - current_position && in PushLimit() 128 byte_limit < current_limit_ - current_position)) { in PushLimit() 129 current_limit_ = current_position + byte_limit; in PushLimit() 148 CodedInputStream::IncrementRecursionDepthAndPushLimit(int byte_limit) { in IncrementRecursionDepthAndPushLimit() argument 149 return std::make_pair(PushLimit(byte_limit), --recursion_budget_); in IncrementRecursionDepthAndPushLimit()
|
D | coded_stream.h | 363 Limit PushLimit(int byte_limit); 436 int byte_limit);
|
/external/OpenCSD/decoder/include/opencsd/etmv4/ |
D | trc_pkt_proc_etmv4i.h | 183 …d::vector<uint8_t> &buffer, const unsigned st_idx, uint32_t &value, const unsigned byte_limit = 5); 184 …d::vector<uint8_t> &buffer, const unsigned st_idx, uint64_t &value, const unsigned byte_limit = 9);
|
/external/OpenCSD/decoder/source/etmv4/ |
D | trc_pkt_proc_etmv4i.cpp | 1626 …vector<uint8_t> &buffer, const unsigned st_idx, uint32_t &value, const unsigned byte_limit /*= 5*/) in extractContField() argument 1632 while(!lastByte && (idx < byte_limit)) // max 5 bytes for 32 bit value; in extractContField() 1650 …vector<uint8_t> &buffer, const unsigned st_idx, uint64_t &value, const unsigned byte_limit /*= 9*/) in extractContField64() argument 1656 while(!lastByte && (idx < byte_limit)) // max 9 bytes for 64 bit value; in extractContField64()
|
/external/kernel-headers/original/uapi/linux/ |
D | btrfs_tree.h | 613 __le64 byte_limit; member
|