Lines Matching refs:temp
874 int temp = calcSegmentBitLength(mode, numChars); in qrcodegen_calcSegmentBufferSize() local
875 if(temp == -1) in qrcodegen_calcSegmentBufferSize()
877 LV_ASSERT(0 <= temp && temp <= INT16_MAX); in qrcodegen_calcSegmentBufferSize()
878 return ((size_t)temp + 7) / 8; in qrcodegen_calcSegmentBufferSize()
985 const char * temp = strchr(ALPHANUMERIC_CHARSET, *text); in qrcodegen_makeAlphanumeric() local
986 LV_ASSERT(temp != NULL); in qrcodegen_makeAlphanumeric()
987 accumData = accumData * 45 + (unsigned int)(temp - ALPHANUMERIC_CHARSET); in qrcodegen_makeAlphanumeric()
1069 static const int temp[] = {10, 12, 14}; in numCharCountBits() local
1070 return temp[i]; in numCharCountBits()
1073 static const int temp[] = { 9, 11, 13}; in numCharCountBits() local
1074 return temp[i]; in numCharCountBits()
1077 static const int temp[] = { 8, 16, 16}; in numCharCountBits() local
1078 return temp[i]; in numCharCountBits()
1081 static const int temp[] = { 8, 10, 12}; in numCharCountBits() local
1082 return temp[i]; in numCharCountBits()