HomeSort by relevance Sort by last modified time
    Searched refs:table (Results 226 - 250 of 3336) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/autotest/client/cros/faft/utils/
rootfs_handler.py 48 table = match.group(1)
51 if table.find('PARTUUID=%U/PARTNROFF=1') < 0:
53 table = table.replace('PARTUUID=%U/PARTNROFF=1', rootfs_path)
55 table += ' error_behavior=eio'
60 "dmsetup create -r %s --table '%s'" % (_DM_DEVICE, table))
  /external/autotest/frontend/client/src/autotest/common/table/
DynamicTableSelectionManager.java 1 package autotest.common.table;
4 import autotest.common.table.DataSource.DefaultDataCallback;
5 import autotest.common.table.DataSource.Query;
38 public DynamicTableSelectionManager(DynamicTable table, boolean selectOnlyOne) {
39 super(table, selectOnlyOne);
40 attachedDynamicTable = table;
46 * Select all objects covering all pages, not just the currently displayed page in the table.
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
WNafL2RMultiplier.java 43 ECPoint[] table = digit < 0 ? preCompNeg : preComp; local
45 // Optimization can only be used for values in the lower half of the table
56 R = table[i1 >>> 1].add(table[i2 >>> 1]);
64 R = table[n >>> 1];
76 ECPoint[] table = digit < 0 ? preCompNeg : preComp; local
77 ECPoint r = table[n >>> 1];
  /external/v8/src/interpreter/
handler-table-builder.cc 5 #include "src/interpreter/handler-table-builder.h"
20 Handle<HandlerTable> table = local
26 table->SetRangeStart(i, static_cast<int>(entry.offset_start));
27 table->SetRangeEnd(i, static_cast<int>(entry.offset_end));
28 table->SetRangeHandler(i, static_cast<int>(entry.offset_target), pred);
29 table->SetRangeData(i, entry.context.index());
31 return table;
44 DCHECK(Smi::IsValid(offset)); // Encoding of handler table requires this.
50 DCHECK(Smi::IsValid(offset)); // Encoding of handler table requires this.
56 DCHECK(Smi::IsValid(offset)); // Encoding of handler table requires this
    [all...]
  /external/zopfli/src/zopfli/
util.c 126 static const int table[259] = { local
144 return table[l];
148 static const int table[259] = { local
162 return table[l];
169 static const int table[259] = { local
203 return table[l];
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/isl/
hash.h 58 void isl_hash_table_free(struct isl_ctx *ctx, struct isl_hash_table *table);
60 int isl_hash_table_init(struct isl_ctx *ctx, struct isl_hash_table *table,
62 void isl_hash_table_clear(struct isl_hash_table *table);
64 struct isl_hash_table *table,
69 struct isl_hash_table *table,
72 struct isl_hash_table *table,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/isl/
hash.h 58 void isl_hash_table_free(struct isl_ctx *ctx, struct isl_hash_table *table);
60 int isl_hash_table_init(struct isl_ctx *ctx, struct isl_hash_table *table,
62 void isl_hash_table_clear(struct isl_hash_table *table);
64 struct isl_hash_table *table,
69 struct isl_hash_table *table,
72 struct isl_hash_table *table,
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationFastLatin.java 85 * Use INDEX_MASK to find the start of the contraction list after the fixed table.
99 * Use INDEX_MASK to find the pair of CEs after the fixed table.
269 char[] table = data.fastLatinTable; // skip the header local
271 int p = table[c];
290 public static int compareUTF16(char[] table, char[] primaries, int options,
321 leftPair = table[c];
323 leftPair = table[c - PUNCT_START + LATIN_LIMIT];
325 leftPair = lookup(table, c);
334 long pairAndInc = nextPair(table, c, leftPair, left, leftIndex);
357 rightPair = table[c]
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationFastLatin.java 81 * Use INDEX_MASK to find the start of the contraction list after the fixed table.
95 * Use INDEX_MASK to find the pair of CEs after the fixed table.
265 char[] table = data.fastLatinTable; // skip the header local
267 int p = table[c];
286 public static int compareUTF16(char[] table, char[] primaries, int options,
317 leftPair = table[c];
319 leftPair = table[c - PUNCT_START + LATIN_LIMIT];
321 leftPair = lookup(table, c);
330 long pairAndInc = nextPair(table, c, leftPair, left, leftIndex);
353 rightPair = table[c]
    [all...]
  /art/tools/ahat/src/
Doc.java 51 * Start a table with the given columns.
55 * This should be followed by calls to the 'row' method to fill in the table
56 * contents and the 'end' method to end the table.
58 void table(Column... columns); method in interface:Doc
61 * Start a table with the following heading structure:
68 * This should be followed by calls to the 'row' method to fill in the table
69 * contents and the 'end' method to end the table.
71 void table(DocString description, List<Column> subcols, List<Column> cols); method in interface:Doc
74 * Add a row to the currently active table.
76 * currently active table
    [all...]
  /external/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.dtor/
dtor.pass.cpp 29 std::ctype<char>::mask table[256]; local
30 std::locale l(std::locale::classic(), new std::ctype<char>(table));
  /external/mesa3d/src/mapi/glapi/
glapi_priv.h 58 _glapi_check_table_not_null(const struct _glapi_table *table);
62 _glapi_check_table(const struct _glapi_table *table);
  /external/sfntly/cpp/src/sfntly/table/
generic_table_builder.cc 17 #include "sfntly/table/generic_table_builder.h"
25 // Note: In C++ port, we use GenericTable, the ref-counted version of Table
27 Ptr<GenericTable> table = new GenericTable(header(), InternalReadData()); local
28 return table.Detach();
  /frameworks/base/tools/aapt2/java/
JavaClassGenerator_test.cpp 30 std::unique_ptr<ResourceTable> table = local
39 util::make_unique<ResourceTableSymbolSource>(table.get()))
42 JavaClassGenerator generator(context.get(), table.get(), {});
49 std::unique_ptr<ResourceTable> table = local
65 util::make_unique<ResourceTableSymbolSource>(table.get()))
68 JavaClassGenerator generator(context.get(), table.get(), {});
86 std::unique_ptr<ResourceTable> table = local
96 util::make_unique<ResourceTableSymbolSource>(table.get()))
99 JavaClassGenerator generator(context.get(), table.get(), {});
112 std::unique_ptr<ResourceTable> table local
137 std::unique_ptr<ResourceTable> table = local
232 std::unique_ptr<ResourceTable> table = local
264 std::unique_ptr<ResourceTable> table = local
305 std::unique_ptr<ResourceTable> table = local
336 std::unique_ptr<ResourceTable> table = local
367 std::unique_ptr<ResourceTable> table = local
    [all...]
  /hardware/qcom/gps/msm8084/utils/
loc_log.h 55 const char* loc_get_name_from_mask(loc_name_val_s_type table[], int table_size, long mask);
56 const char* loc_get_name_from_val(loc_name_val_s_type table[], int table_size, long value);
  /hardware/qcom/gps/msm8960/utils/
loc_log.h 55 const char* loc_get_name_from_mask(loc_name_val_s_type table[], int table_size, long mask);
56 const char* loc_get_name_from_val(loc_name_val_s_type table[], int table_size, long value);
  /hardware/qcom/gps/msm8994/utils/
loc_log.h 55 const char* loc_get_name_from_mask(loc_name_val_s_type table[], int table_size, long mask);
56 const char* loc_get_name_from_val(loc_name_val_s_type table[], int table_size, long value);
  /hardware/qcom/gps/utils/
loc_log.h 55 const char* loc_get_name_from_mask(loc_name_val_s_type table[], int table_size, long mask);
56 const char* loc_get_name_from_val(loc_name_val_s_type table[], int table_size, long value);
  /prebuilts/go/darwin-x86/src/debug/plan9obj/
plan9obj.go 17 Syms uint32 /* size of symbol table */
19 Spsz uint32 /* size of pc/sp offset table */
20 Pcsz uint32 /* size of pc/line number table */
23 // Plan 9 symbol table entries.
  /prebuilts/go/linux-x86/src/debug/plan9obj/
plan9obj.go 17 Syms uint32 /* size of symbol table */
19 Spsz uint32 /* size of pc/sp offset table */
20 Pcsz uint32 /* size of pc/line number table */
23 // Plan 9 symbol table entries.
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.dtor/
dtor.pass.cpp 29 std::ctype<char>::mask table[256]; local
30 std::locale l(std::locale::classic(), new std::ctype<char>(table));
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/aarch64/
advsimd-mov-bad.d 4 Symbol table '.symtab' contains 6 entries:
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
brokw-1.s 8 ; Short jump around secondary jump table inserted here :
12 ; Secondary jump table inserted here :
brokw-2.s 9 ; Short jump around secondary jump table inserted here :
13 ; Secondary jump table inserted here :
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elfvsb/
hidden0.d 6 Symbol table '.symtab' contains .* entries:

Completed in 590 milliseconds

1 2 3 4 5 6 7 8 91011>>