Lines Matching refs:c
651 const U8 c = *mpReadPtr; in readDictOp() local
652 if( c <= 21 ) { // we are looking at an operator in readDictOp()
756 } else if( (c >= 32) || (c == 28) ) { in readDictOp()
759 } else if( c == 29 ) { // we are looking at a 32-bit operand in readDictOp()
770 } else if( c == 30) { // we are looking at a real number operand in readDictOp()
786 const U8 c = *p; in read2push() local
787 if( c == 28 ) { // -32767..+32767 in read2push()
793 } else if( c <= 246 ) { // -107..+107 in read2push()
796 } else if( c <= 250 ) { // +108..+1131 in read2push()
799 } else if( c <= 254 ) { // -108..-1131 in read2push()
1462 const U8 c = *(mpReadPtr++); // read nibbles in readRealVal() local
1464 const U8 nH = c >> 4U; in readRealVal()
1486 const U8 nL = c & 0x0F; in readRealVal()
2138 const char c = *(pI++); in emitAsType1() local
2139 if( c != ' ') in emitAsType1()
2140 *(pO++) = c; in emitAsType1()
2141 if( !c) in emitAsType1()