HomeSort by relevance Sort by last modified time
    Searched full:kshift (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/chromium_org/gpu/command_buffer/common/
bitfield_helpers.h 16 static const unsigned int kShift = shift;
24 return (container >> kShift) & kMask;
29 return (value & kMask) << kShift;
34 *container = (*container & ~(kMask << kShift)) | MakeValue(field_value);
  /external/chromium_org/third_party/skia/src/core/
SkPerspIter.h 38 kShift = 4,
39 kCount = (1 << kShift)
  /external/skia/src/core/
SkPerspIter.h 38 kShift = 4,
39 kCount = (1 << kShift)
  /external/chromium_org/third_party/skia/gm/
xfermodes2.cpp 112 int c = y * (1 << kShift);
126 int c = x * (1 << kShift);
138 kShift = 2,
139 kSize = 256 >> kShift,
  /external/skia/gm/
xfermodes2.cpp 111 int c = y * (1 << kShift);
125 int c = x * (1 << kShift);
137 kShift = 2,
138 kSize = 256 >> kShift,
  /frameworks/av/media/libstagefright/
AudioSource.cpp 186 const int32_t kShift = 14;
187 int32_t fixedMultiplier = (startFrame << kShift) / rampDurationFrames;
197 frame[0] = (frame[0] * fixedMultiplier) >> kShift;
201 frame[0] = (frame[0] * fixedMultiplier) >> kShift;
202 frame[1] = (frame[1] * fixedMultiplier) >> kShift;
209 fixedMultiplier = (startFrame << kShift) / rampDurationFrames;
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
gethex.c 190 n0 = n = nbits >> kshift;
206 for(k = 0; n > (1 << (kshift-2)) - 1; n >>= 1)
246 if (x[k>>kshift] & 1 << (k & kmask)) {
312 if (x[k>>kshift] & 1 << (k & kmask))
342 && x[nbits >> kshift] & 1 << (nbits & kmask))
gmisc.c 45 n = k >> kshift;
smisc.c 155 ce = c + ((n-1) >> kshift) + 1;
185 n = k >> kshift;
hexnan.c 67 x = x0 + (nbits >> kshift);
strtodg.c 136 xe = x + (n >> kshift);
155 k = (n + ((1 << kshift) - 1)) >> kshift;
162 k = n >> kshift;
231 if (b->x[k>>kshift] & ((ULong)1 << (k & kmask)))
281 carry = b->x[k1>>kshift] & (1 << (k1 & kmask));
gdtoaimp.h 451 #define kshift 5 macro
456 #define kshift 4 macro
  /external/chromium_org/v8/src/
global-handles.h 357 static const int kShift = 8;
358 static const int kSize = 1 << kShift;
364 return &blocks_[index >> kShift][index & kMask];
global-handles.cc 53 STATIC_ASSERT(static_cast<int>(IsIndependent::kShift) ==
55 STATIC_ASSERT(static_cast<int>(IsPartiallyDependent::kShift) ==
1038 int block = size_ >> kShift;
lithium.h 113 value_ |= index << FixedSlotIndexField::kShift;
233 return static_cast<int>(value_) >> FixedSlotIndexField::kShift;
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
spstproc.cpp 198 Word16 kShift;
208 kShift = 16 - 2 - 1;
214 kShift = 16 - 4 - 1;
298 * kshift 4 2
308 temp += (Word16)(L_temp >> kShift);
  /external/chromium_org/third_party/webrtc/common_audio/signal_processing/
signal_processing_unittest.cc 465 const int kShift = 2;
474 kCrossCorrelationDimension, kShift, kStep);
  /external/chromium_org/v8/tools/
gen-postmortem-metadata.py 104 'value': 'PropertyDetails::FieldIndexField::kShift' },
127 'value': 'Map::DictionaryMap::kShift' },
  /ndk/sources/android/support/src/stdio/
strtod.c 365 #define kshift 5 macro
370 #define kshift 4 macro
489 ce = c + ((n-1) >> kshift) + 1;
515 n = k >> kshift;
540 n = k >> kshift;
    [all...]