HomeSort by relevance Sort by last modified time
    Searched refs:array_index (Results 1 - 12 of 12) sorted by null

  /external/chromium/net/disk_cache/
bitmap.cc 119 void Bitmap::SetMapElement(int array_index, uint32 value) {
120 DCHECK_LT(array_index, array_size_);
121 DCHECK_GE(array_index, 0);
122 map_[array_index] = value;
125 uint32 Bitmap::GetMapElement(int array_index) const {
126 DCHECK_LT(array_index, array_size_);
127 DCHECK_GE(array_index, 0);
128 return map_[array_index];
bitmap.h 55 // Directly sets an element of the internal map. Requires |array_index| <
57 void SetMapElement(int array_index, uint32 value);
59 // Gets an entry of the internal map. Requires array_index <
61 uint32 GetMapElement(int array_index) const;
  /external/openfst/src/extensions/ngram/
bitmap-index.cc 115 size_t BitmapIndex::get_index_ones_count(size_t array_index) const {
117 if (array_index > 0) {
118 sum += secondary_index_[array_index-1];
119 uint32 end_block = (array_index - 1) / kSecondaryBlockSize;
  /external/clang/test/CodeGenCXX/
catch-undef-behavior.cpp 229 int array_index(const int (&a)[4], int n) { function
  /external/harfbuzz/src/
harfbuzz-gdef.c 654 HB_UShort glyph_index, array_index, count; local
670 array_index = index;
678 array_index = index + 1;
682 byte = ngc[array_index][glyph_index / 4];
989 HB_UShort array_index, glyph_index, count; local
1036 array_index = index;
1044 array_index = index + 1;
1048 byte = ngc[array_index][glyph_index / 4];
1059 ngc[array_index][glyph_index / 4] &= mask;
1060 ngc[array_index][glyph_index / 4] |= bits
    [all...]
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-gdef.c 654 HB_UShort glyph_index, array_index, count; local
670 array_index = index;
678 array_index = index + 1;
682 byte = ngc[array_index][glyph_index / 4];
989 HB_UShort array_index, glyph_index, count; local
1036 array_index = index;
1044 array_index = index + 1;
1048 byte = ngc[array_index][glyph_index / 4];
1059 ngc[array_index][glyph_index / 4] &= mask;
1060 ngc[array_index][glyph_index / 4] |= bits
    [all...]
  /external/openfst/src/include/fst/extensions/ngram/
bitmap-index.h 129 // returns, from the index, the count of ones up to array_index
130 size_t get_index_ones_count(size_t array_index) const;
  /system/netd/
CommandListener.cpp 584 int array_index = 0; local
586 while (array_index < num_addrs) {
587 if (!inet_aton(argv[arg_index++], &(addrs[array_index++]))) {
    [all...]
  /external/qemu/block/
vvfat.c 194 static int array_index(array_t* array, void* pointer) function
    [all...]
  /external/v8/src/
liveedit-debugger.js 523 function CodeInfoTreeNode(code_info, children, array_index) {
527 this.array_index = array_index;
    [all...]
objects.h 6690 uint32_t array_index() { function in class:v8::internal::StringHasher
    [all...]
objects.cc     [all...]

Completed in 731 milliseconds