Lines Matching defs:temp
833 int temp = calcSegmentBitLength(mode, numChars);
834 if (temp == -1)
836 assert(0 <= temp && temp <= INT16_MAX);
837 return ((size_t)temp + 7) / 8;
940 const char *temp = strchr(ALPHANUMERIC_CHARSET, *text);
941 assert(temp != NULL);
942 accumData = accumData * 45 + (unsigned int)(temp - ALPHANUMERIC_CHARSET);
1015 case qrcodegen_Mode_NUMERIC : { static const int temp[] = {10, 12, 14}; return temp[i]; }
1016 case qrcodegen_Mode_ALPHANUMERIC: { static const int temp[] = { 9, 11, 13}; return temp[i]; }
1017 case qrcodegen_Mode_BYTE : { static const int temp[] = { 8, 16, 16}; return temp[i]; }
1018 case qrcodegen_Mode_KANJI : { static const int temp[] = { 8, 10, 12}; return temp[i]; }