Home
last modified time | relevance | path

Searched refs:byte_code (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/v8/src/
Dserialize.h252 static int RepeatsForCode(int byte_code) { in RepeatsForCode() argument
253 ASSERT(byte_code >= kConstantRepeat && byte_code <= 0x7f); in RepeatsForCode()
254 return byte_code - 0x72; in RepeatsForCode()
259 static int RootArrayConstantFromByteCode(int byte_code) { in RootArrayConstantFromByteCode() argument
260 return byte_code & 0x1f; in RootArrayConstantFromByteCode()
Dserialize.cc990 #define FOUR_CASES(byte_code) \ in ReadChunk() argument
991 case byte_code: \ in ReadChunk()
992 case byte_code + 1: \ in ReadChunk()
993 case byte_code + 2: \ in ReadChunk()
994 case byte_code + 3: in ReadChunk()
996 #define SIXTEEN_CASES(byte_code) \ in ReadChunk() argument
997 FOUR_CASES(byte_code) \ in ReadChunk()
998 FOUR_CASES(byte_code + 4) \ in ReadChunk()
999 FOUR_CASES(byte_code + 8) \ in ReadChunk()
1000 FOUR_CASES(byte_code + 12) in ReadChunk()