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

/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DCommon.h19 // incremented/decremented by lexer. The right SOURCE_LOC_LINE_SIZE bits store
21 // usually small, we should not run out of memory. SOURCE_LOC_LINE_SIZE
24 const unsigned int SOURCE_LOC_LINE_SIZE = 16; // in bits. variable
25 const unsigned int SOURCE_LOC_LINE_MASK = (1 << SOURCE_LOC_LINE_SIZE) - 1;
28 return (string << SOURCE_LOC_LINE_SIZE) | (line & SOURCE_LOC_LINE_MASK);
32 if (string) *string = loc >> SOURCE_LOC_LINE_SIZE;

Completed in 132 milliseconds