Lines Matching refs:value
11 unsigned int value = dec & 0x0f;12 if (value < 10)13 hexstr[hexstr_size-i-1] = value + '0';15 hexstr[hexstr_size-i-1] = value - 10 + 'A';23 uintmax_t value = 0;26 value = value*0x10;28 value += data[i]-'0';30 value += data[i]-'A' + 10;32 value += data[i]-'a' + 10;36 return value;