Lines Matching refs:value
235 unsigned value; /* Used to compute the hash value. */
238 /* Set the initial value from the key size. */
239 for (value = 0x238F13AF * strlen(name), i = 0; name[i]; i++)
240 value = (value + (((unsigned char *)name)[i] << (i*5 % 24)));
242 return (1103515243 * value + 12345);
665 * Parse tag=value strings from .modinfo section
945 * We cannot see value of permissions here, so just ignore
965 * allocated for them and symbol address and value are same. So even
1319 static int32_t sign_extend32(int32_t value, int index)
1323 return (int32_t)(value << shift) >> shift;