HomeSort by relevance Sort by last modified time
    Searched refs:base_code (Results 1 - 5 of 5) sorted by null

  /system/update_engine/
metrics_utils.cc 34 ErrorCode base_code = static_cast<ErrorCode>( local
37 switch (base_code) {
127 LOG(ERROR) << "Unexpected error code " << base_code;
132 ErrorCode base_code = static_cast<ErrorCode>( local
135 if (base_code >= ErrorCode::kOmahaRequestHTTPResponseBase) {
137 static_cast<int>(base_code) -
152 switch (base_code) {
224 LOG(ERROR) << "Unexpected error code " << base_code;
  /external/v8/src/
register-configuration.cc 178 int base_code = allocatable_double_codes_[i] * 2; local
179 if (base_code >= kMaxFPRegisters) continue;
180 allocatable_float_codes_[num_allocatable_float_registers_++] = base_code;
182 base_code + 1;
183 allocatable_float_codes_mask_ |= (0x3 << base_code);
  /external/syslinux/efi/
wrapper.h 63 __uint32_t base_code; member in struct:optional_hdr
68 * data after base_code
78 __uint32_t base_code; member in struct:optional_hdr_pe32p
  /system/update_engine/common/
utils.cc 910 ErrorCode base_code = static_cast<ErrorCode>( local
916 if (base_code >= ErrorCode::kOmahaRequestHTTPResponseBase) {
919 LOG(INFO) << "Converting error code " << base_code
921 base_code = ErrorCode::kOmahaErrorInHTTPResponse;
924 return base_code;
    [all...]
  /external/v8/src/x64/
assembler-x64.cc 261 int base_code = buf_[0] & 0x07; local
262 if (base_code == rsp.code()) {
269 base_code = (buf_[1] & 0x07) | ((rex_ & 0x01) << 3);
271 if (base_code == rbp.code() && ((buf_[0] & 0xC0) == 0)) return false;
272 return code == base_code;
276 if (base_code == rbp.code() && ((buf_[0] & 0xC0) == 0)) return false;
277 base_code |= ((rex_ & 0x01) << 3);
278 return code == base_code;
    [all...]

Completed in 154 milliseconds