Searched refs:base_code (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/libwebp/utils/
H A Dhuffman.c191 int base_code; local
197 base_code = ReverseBitsShort(code, code_length);
199 const int idx = base_code | (i << code_length);
204 base_code = ReverseBitsShort((code >> (code_length - HUFF_LUT_BITS)),
219 tree->lut_jump_[base_code] = (int16_t)(node - tree->root_);
/external/webp/src/utils/
H A Dhuffman.c191 int base_code; local
197 base_code = ReverseBitsShort(code, code_length);
199 const int idx = base_code | (i << code_length);
204 base_code = ReverseBitsShort((code >> (code_length - HUFF_LUT_BITS)),
219 tree->lut_jump_[base_code] = (int16_t)(node - tree->root_);
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DPyrexTypes.py35 def base_declaration_code(self, base_code, entity_code):
37 return "%s %s" % (base_code, entity_code)
39 return base_code
287 def public_decl(base_code, dll_linkage):
289 return "%s(%s)" % (dll_linkage, base_code)
291 return base_code
346 base_code = self.typedef_name
348 base_code = public_decl(self.typedef_cname, dll_linkage)
349 return self.base_declaration_code(base_code, entity_code)
898 base_code
[all...]
/external/chromium_org/v8/src/x64/
H A Dassembler-x64.cc202 int base_code = buf_[0] & 0x07; local
203 if (base_code == rsp.code()) {
210 base_code = (buf_[1] & 0x07) | ((rex_ & 0x01) << 3);
212 if (base_code == rbp.code() && ((buf_[0] & 0xC0) == 0)) return false;
213 return code == base_code;
217 if (base_code == rbp.code() && ((buf_[0] & 0xC0) == 0)) return false;
218 base_code |= ((rex_ & 0x01) << 3);
219 return code == base_code;

Completed in 215 milliseconds