Searched refs:byte_code (Results 1 – 2 of 2) sorted by relevance
252 static int RepeatsForCode(int byte_code) { in RepeatsForCode() argument253 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() argument260 return byte_code & 0x1f; in RootArrayConstantFromByteCode()
990 #define FOUR_CASES(byte_code) \ in ReadChunk() argument991 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() argument997 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()