HomeSort by relevance Sort by last modified time
    Searched defs:type_code (Results 1 - 4 of 4) sorted by null

  /external/qemu/target-i386/
kvm.c 943 const uint8_t type_code[] = { local
962 (type_code[hw_breakpoint[n].type] << (16 + n*4)) |
  /external/chromium_org/third_party/brotli/src/brotli/dec/
decode.c 482 int type_code = ReadSymbol(&trees[tree_type * HUFFMAN_MAX_TABLE_SIZE], br); local
484 if (type_code == 0) {
486 } else if (type_code == 1) {
489 block_type = type_code - 2;
    [all...]
  /external/vixl/src/a64/
debugger-a64.cc 193 virtual char type_code() const = 0;
207 Format(const char* fmt, char type_code) : fmt_(fmt), type_code_(type_code) {}
210 virtual char type_code() const { return type_code_; } function in class:vixl::Format
    [all...]
  /external/chromium_org/third_party/brotli/src/brotli/enc/
encode.cc 642 int type_code; local
644 type_code = 0;
646 type_code = 1;
648 type_code = type + 2;
652 split->type_codes_.push_back(type_code);
690 int type_code = it->split_.type_codes_[it->idx_]; local
691 WriteBits(code.block_type_code.depth_[type_code],
692 code.block_type_code.bits_[type_code],
    [all...]

Completed in 812 milliseconds