Lines Matching defs:value
14 const double kADMin32 = 0.202; // p-value of ~0.1
15 const double kADMax32 = 3.89; // p-value of ~0.99
112 // pre-seed our string value
113 int value = 0;
115 value <<= 1;
117 value |= ((rnd >> shift) & 0x1);
122 value = SkLeftShift(value, 1);
124 value |= ((rnd >> shift) & 0x1);
126 int index = value & (kNumEntries-1);
128 int entry_shift = (value >> (kWordWidth-5)) & 0x1f;