Searched defs:kTableSize (Results 1 - 10 of 10) sorted by relevance

/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_clock.h28 static const uptr kTableSize = kSize / sizeof(u32); member in struct:__tsan::ClockBlock
32 u32 table[kTableSize];
H A Dtsan_fd.cc22 const int kTableSize = kTableSizeL1 * kTableSizeL2; member in namespace:__tsan
47 return fd < 0 || fd >= kTableSize;
76 CHECK_LT(fd, kTableSize);
/external/dng_sdk/source/
H A Ddng_1d_table.h43 kTableBits = 12, //< Table is always a power of 2 in size. This is log2(kTableSize).
44 kTableSize = (1 << kTableBits) //< Number of entries in table. enumerator in enum:dng_1d_table::__anon4647
76 real32 y = x * (real32) kTableSize;
80 if (index < 0 || index > kTableSize)
87 DNG_ASSERT (index >= 0 && index <= kTableSize,
H A Ddng_render.cpp400 const uint32 kTableSize = sizeof (kTable ) / local
403 real32 y = (real32) x * (real32) (kTableSize - 1);
405 int32 index = Pin_int32 (0, (int32) y, kTableSize - 2);
680 const uint32 kTableSize = sizeof (kTable ) / local
683 real32 y = (real32) x * (real32) (kTableSize - 1);
685 int32 index = Pin_int32 (0, (int32) y, kTableSize - 2);
H A Ddng_read_image.cpp392 kTableSize = 4096 enumerator in enum:dng_lzw_expander::__anon4672
461 fBuffer.Allocate (kTableSize * sizeof (LZWExpanderNode));
496 DNG_ASSERT ((w >= 0) && (w <= kTableSize),
505 DNG_ASSERT ((nextCode >= 0) && (nextCode <= kTableSize),
717 if (localCode < 0 || localCode > kTableSize)
771 if (code > kTableSize)
790 if (fNextCode < kTableSize)
H A Ddng_image_writer.cpp3257 kTableSize = 4096 enumerator in enum:dng_lzw_compressor::__anon4655
3302 DNG_ASSERT ((w >= 0) && (w <= kTableSize),
3348 fBuffer.Allocate (kTableSize, sizeof (LZWCompressorNode));
3384 DNG_ASSERT ((w >= 0) && (w <= kTableSize),
3391 DNG_ASSERT ((nextCode >= 0) && (nextCode <= kTableSize),
/external/webrtc/webrtc/common_audio/vad/
H A Dvad_core.h24 enum { kTableSize = kNumChannels * kNumGaussians }; enumerator in enum:__anon20760
33 int16_t noise_means[kTableSize];
34 int16_t speech_means[kTableSize];
35 int16_t noise_stds[kTableSize];
36 int16_t speech_stds[kTableSize];
/external/v8/src/regexp/
H A Dregexp-macro-assembler.h28 static const int kTableSize = 1 << kTableSizeBits; member in class:v8::internal::RegExpMacroAssembler
29 static const int kTableMask = kTableSize - 1;
102 // The current character (modulus the kTableSize) is looked up in the byte
/external/webp/src/dec/
H A Dvp8l.c88 static const int kTableSize[12] = { variable
369 const int table_size = kTableSize[color_cache_bits];
/external/v8/src/
H A Dassembler.cc967 const int kTableSize = 1 << kTableSizeBits; local
968 const double kTableSizeDouble = static_cast<double>(kTableSize);
988 math_exp_log_table_array = new double[kTableSize];
989 for (int i = 0; i < kTableSize; i++) {

Completed in 2006 milliseconds