Home
last modified time | relevance | path

Searched refs:Table (Results 1 – 25 of 674) sorted by relevance

12345678910>>...27

/external/sfntly/cpp/src/sfntly/table/
Dtable.cc46 Table::~Table() {} in ~Table()
48 int64_t Table::CalculatedChecksum() { in CalculatedChecksum()
52 void Table::SetFont(Font* font) { in SetFont()
56 Table::Table(Header* header, ReadableFontData* data) in Table() function in sfntly::Table
64 Table::Builder::~Builder() { in ~Builder()
68 void Table::Builder::NotifyPostTableBuild(FontDataTable* table) { in NotifyPostTableBuild()
70 Table* derived_table = down_cast<Table*>(table); in NotifyPostTableBuild()
77 Table::Builder* Table::Builder::GetBuilder(Header* header, in GetBuilder()
80 Table::Builder* builder_raw = NULL; in GetBuilder()
85 builder_raw = static_cast<Table::Builder*>( in GetBuilder()
[all …]
Dtable.h35 class Table : public FontDataTable {
67 virtual ~Table();
92 Table(Header* header, ReadableFontData* data);
100 class GenericTable : public Table, public RefCounted<GenericTable> {
102 GenericTable(Header* header, ReadableFontData* data) : Table(header, data) {} in GenericTable()
106 typedef Ptr<Table> TablePtr;
108 typedef Ptr<Table::Builder> TableBuilderPtr;
/external/ltp/testcases/open_posix_testsuite/stress/threads/sem_open/
Ds-c1.c442 struct row *Table = NULL; in parse_measure() local
522 Table = calloc(N, sizeof(struct row)); in parse_measure()
524 if (Table == NULL) { in parse_measure()
536 Table[N].X = (long)cur->nsem; in parse_measure()
537 Table[N].LnX = log((double)cur->nsem); in parse_measure()
540 Table[N]._x = Table[N].X - Xavg; in parse_measure()
541 Table[N]._lnx = Table[N].LnX - LnXavg; in parse_measure()
542 Table[N].Y_o = cur->_data_open; in parse_measure()
543 Table[N]._y_o = Table[N].Y_o - Yavg_o; in parse_measure()
544 Table[N].LnY_o = log((double)cur->_data_open); in parse_measure()
[all …]
/external/ltp/testcases/open_posix_testsuite/stress/threads/sem_init/
Ds-c1.c432 struct row *Table = NULL; local
512 Table = calloc(N, sizeof(struct row));
514 if (Table == NULL) {
527 Table[N].X = (long)cur->nsem;
528 Table[N].LnX = log((double)cur->nsem);
531 Table[N]._x = Table[N].X - Xavg;
532 Table[N]._lnx = Table[N].LnX - LnXavg;
533 Table[N].Y_o = cur->_data_open;
534 Table[N]._y_o = Table[N].Y_o - Yavg_o;
535 Table[N].LnY_o = log((double)cur->_data_open);
[all …]
/external/flatbuffers/go/
Dtable.go6 type Table struct { struct
14 func (t *Table) Offset(vtableOffset VOffsetT) VOffsetT { argument
23 func (t *Table) Indirect(off UOffsetT) UOffsetT { argument
28 func (t *Table) String(off UOffsetT) string { argument
34 func (t *Table) ByteVector(off UOffsetT) []byte { argument
43 func (t *Table) VectorLen(off UOffsetT) int { argument
51 func (t *Table) Vector(off UOffsetT) UOffsetT { argument
61 func (t *Table) Union(t2 *Table, off UOffsetT) { argument
68 func (t *Table) GetBool(off UOffsetT) bool { argument
73 func (t *Table) GetByte(off UOffsetT) byte { argument
[all …]
/external/sfntly/cpp/src/test/
Dserialization_test.h24 bool VerifyHHEA(Table* original, Table* target);
25 bool VerifyGLYF(Table* original, Table* target);
26 bool VerifyHMTX(Table* original, Table* target);
27 bool VerifyLOCA(Table* original, Table* target);
28 bool VerifyMAXP(Table* original, Table* target);
29 bool VerifyNAME(Table* original, Table* target);
30 bool VerifyOS_2(Table* original, Table* target);
/external/ltp/testcases/open_posix_testsuite/stress/threads/fork/
Ds-c1.c437 struct row *Table = NULL; in parse_measure() local
500 Table = calloc(N, sizeof(struct row)); in parse_measure()
502 if (Table == NULL) { in parse_measure()
514 Table[N].X = (long)cur->nprocess; in parse_measure()
515 Table[N].LnX = log((double)cur->nprocess); in parse_measure()
518 Table[N]._x = Table[N].X - Xavg; in parse_measure()
519 Table[N]._lnx = Table[N].LnX - LnXavg; in parse_measure()
520 Table[N].Y = cur->_data; in parse_measure()
521 Table[N]._y = Table[N].Y - Yavg; in parse_measure()
522 Table[N].LnY = log((double)cur->_data); in parse_measure()
[all …]
/external/skia/third_party/lua/src/
Dltable.h21 LUAI_FUNC const TValue *luaH_getint (Table *t, int key);
22 LUAI_FUNC void luaH_setint (lua_State *L, Table *t, int key, TValue *value);
23 LUAI_FUNC const TValue *luaH_getstr (Table *t, TString *key);
24 LUAI_FUNC const TValue *luaH_get (Table *t, const TValue *key);
25 LUAI_FUNC TValue *luaH_newkey (lua_State *L, Table *t, const TValue *key);
26 LUAI_FUNC TValue *luaH_set (lua_State *L, Table *t, const TValue *key);
27 LUAI_FUNC Table *luaH_new (lua_State *L);
28 LUAI_FUNC void luaH_resize (lua_State *L, Table *t, int nasize, int nhsize);
29 LUAI_FUNC void luaH_resizearray (lua_State *L, Table *t, int nasize);
30 LUAI_FUNC void luaH_free (lua_State *L, Table *t);
[all …]
Dltable.c80 static Node *hashnum (const Table *t, lua_Number n) { in hashnum()
97 static Node *mainposition (const Table *t, const TValue *key) { in mainposition()
144 static int findindex (lua_State *L, Table *t, StkId key) { in findindex()
169 int luaH_next (lua_State *L, Table *t, StkId key) { in luaH_next()
229 static int numusearray (const Table *t, int *nums) { in numusearray()
254 static int numusehash (const Table *t, int *nums, int *pnasize) { in numusehash()
270 static void setarrayvector (lua_State *L, Table *t, int size) { in setarrayvector()
279 static void setnodevector (lua_State *L, Table *t, int size) { in setnodevector()
304 void luaH_resize (lua_State *L, Table *t, int nasize, int nhsize) { in luaH_resize()
337 void luaH_resizearray (lua_State *L, Table *t, int nasize) { in luaH_resizearray()
[all …]
/external/syslinux/com32/lua/src/
Dltable.h25 LUAI_FUNC const TValue *luaH_getint (Table *t, int key);
26 LUAI_FUNC void luaH_setint (lua_State *L, Table *t, int key, TValue *value);
27 LUAI_FUNC const TValue *luaH_getstr (Table *t, TString *key);
28 LUAI_FUNC const TValue *luaH_get (Table *t, const TValue *key);
29 LUAI_FUNC TValue *luaH_newkey (lua_State *L, Table *t, const TValue *key);
30 LUAI_FUNC TValue *luaH_set (lua_State *L, Table *t, const TValue *key);
31 LUAI_FUNC Table *luaH_new (lua_State *L);
32 LUAI_FUNC void luaH_resize (lua_State *L, Table *t, int nasize, int nhsize);
33 LUAI_FUNC void luaH_resizearray (lua_State *L, Table *t, int nasize);
34 LUAI_FUNC void luaH_free (lua_State *L, Table *t);
[all …]
Dltable.c82 static Node *hashnum (const Table *t, lua_Number n) { in hashnum()
98 static Node *mainposition (const Table *t, const TValue *key) { in mainposition()
145 static int findindex (lua_State *L, Table *t, StkId key) { in findindex()
170 int luaH_next (lua_State *L, Table *t, StkId key) { in luaH_next()
230 static int numusearray (const Table *t, int *nums) { in numusearray()
255 static int numusehash (const Table *t, int *nums, int *pnasize) { in numusehash()
271 static void setarrayvector (lua_State *L, Table *t, int size) { in setarrayvector()
280 static void setnodevector (lua_State *L, Table *t, int size) { in setnodevector()
305 void luaH_resize (lua_State *L, Table *t, int nasize, int nhsize) { in luaH_resize()
338 void luaH_resizearray (lua_State *L, Table *t, int nasize) { in luaH_resizearray()
[all …]
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DTableCollectionTest.java21 import com.google.common.collect.Table.Cell;
70 Table<String, Integer, Character> table, String[] elements) { in populateForRowKeySet()
78 Table<Integer, String, Character> table, String[] elements) { in populateForColumnKeySet()
86 Table<Integer, Character, String> table, String[] elements) { in populateForValues()
107 Table<String, Integer, Character> table = createTable(); in create()
117 abstract Table<String, Integer, Character> createTable(); in createTable()
157 abstract Table<Character, String, Integer> makeTable(); in makeTable()
164 Table<Character, String, Integer> table = makeTable(); in makePopulatedMap()
178 @Override Table<Character, String, Integer> makeTable() { in makeTable()
188 @Override Table<Character, String, Integer> makeTable() { in makeTable()
[all …]
DHashBasedTableTest.java29 @Override protected Table<String, Integer, Character> create( in create()
31 Table<String, Integer, Character> table = HashBasedTable.create(); in create()
40 Table<String, Integer, Character> table1 = HashBasedTable.create(100, 20); in testCreateWithValidSizes()
44 Table<String, Integer, Character> table2 = HashBasedTable.create(100, 0); in testCreateWithValidSizes()
48 Table<String, Integer, Character> table3 = HashBasedTable.create(0, 20); in testCreateWithValidSizes()
52 Table<String, Integer, Character> table4 = HashBasedTable.create(0, 0); in testCreateWithValidSizes()
70 Table<String, Integer, Character> original in testCreateCopy()
72 Table<String, Integer, Character> copy = HashBasedTable.create(original); in testCreateCopy()
DImmutableTableTest.java30 @Override protected Table<String, Integer, Character> create(Object... data) { in create()
47 Table<Character, Integer, String> expectedTable = HashBasedTable.create(); in testBuilder()
51 Table<Character, Integer, String> otherTable = HashBasedTable.create(); in testBuilder()
100 Table.Cell<Character, Integer, String> mutableCell = in testBuilder_withMutableCell()
159 private static <R, C, V> void validateTableCopies(Table<R, C, V> original) { in validateTableCopies()
160 Table<R, C, V> copy = ImmutableTable.copyOf(original); in validateTableCopies()
164 Table<R, C, V> built in validateTableCopies()
171 Table<R, C, V> original, Table<R, C, V> copy) { in validateViewOrdering()
178 Table<Character, Integer, String> table = TreeBasedTable.create(); in testCopyOf()
193 Table<Character, Integer, String> table = TreeBasedTable.create(); in testCopyOfSparse()
[all …]
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_create/
Ds-c1.c485 struct row *Table = NULL; in parse_measure() local
550 Table = calloc(N, sizeof(struct row)); in parse_measure()
551 if (Table == NULL) { in parse_measure()
562 Table[N].X = (long)cur->nthreads; in parse_measure()
563 Table[N].LnX = log((double)cur->nthreads); in parse_measure()
566 Table[N]._x[i] = Table[N].X - Xavg[i]; in parse_measure()
567 Table[N]._lnx[i] = Table[N].LnX - LnXavg[i]; in parse_measure()
568 Table[N].Y[i] = cur->_data[i]; in parse_measure()
569 Table[N]._y[i] = Table[N].Y[i] - Yavg[i]; in parse_measure()
570 Table[N].LnY[i] = log((double)cur->_data[i]); in parse_measure()
[all …]
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_timedwait/
Ds-c.c709 struct row *Table = NULL; in parse_measure() local
767 Table = calloc(N, sizeof(struct row)); in parse_measure()
768 if (Table == NULL) { in parse_measure()
779 Table[N].X = (long)cur->nthreads; in parse_measure()
780 Table[N]._x = Table[N].X - Xavg; in parse_measure()
781 Table[N].LnX = log((double)cur->nthreads); in parse_measure()
782 Table[N]._lnx = Table[N].LnX - LnXavg; in parse_measure()
784 Table[N].Y[i] = cur->_data[i]; in parse_measure()
785 Table[N]._y[i] = Table[N].Y[i] - Yavg[i]; in parse_measure()
786 Table[N].LnY[i] = log((double)cur->_data[i]); in parse_measure()
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DTableCollectionTest.java25 import com.google.common.collect.Table.Cell;
123 Table<String, Integer, Character> table in suite()
139 Table<String, Integer, Character> table = HashBasedTable.create(); in suite()
168 Table<String, Integer, Character> table = HashBasedTable.create(); in suite()
195 Table<Integer, String, Character> table in suite()
211 Table<Integer, String, Character> table = HashBasedTable.create(); in suite()
222 Table<Integer, String, Character> table = TreeBasedTable.create(); in suite()
238 Table<Integer, String, Character> table = HashBasedTable.create(); in suite()
270 Table<Integer, Character, String> table in suite()
285 Table<Integer, Character, String> table = HashBasedTable.create(); in suite()
[all …]
DTransposedTableTest.java29 @Override protected Table<String, Integer, Character> create( in create()
31 Table<Integer, String, Character> original = HashBasedTable.create(); in create()
32 Table<String, Integer, Character> table = Tables.transpose(original); in create()
39 Table<Integer, String, Character> original = HashBasedTable.create(); in testTransposeTransposed()
44 Table<Integer, String, Character> original = HashBasedTable.create(); in testPutOriginalModifiesTranspose()
45 Table<String, Integer, Character> transpose = Tables.transpose(original); in testPutOriginalModifiesTranspose()
51 Table<Integer, String, Character> original = HashBasedTable.create(); in testPutTransposeModifiesOriginal()
52 Table<String, Integer, Character> transpose = Tables.transpose(original); in testPutTransposeModifiesOriginal()
58 Table<Integer, String, Character> original = HashBasedTable.create(); in testTransposedViews()
59 Table<String, Integer, Character> transpose = Tables.transpose(original); in testTransposedViews()
DHashBasedTableTest.java32 @Override protected Table<String, Integer, Character> create( in create()
34 Table<String, Integer, Character> table = HashBasedTable.create(); in create()
43 Table<String, Integer, Character> table1 = HashBasedTable.create(100, 20); in testCreateWithValidSizes()
47 Table<String, Integer, Character> table2 = HashBasedTable.create(100, 0); in testCreateWithValidSizes()
51 Table<String, Integer, Character> table3 = HashBasedTable.create(0, 20); in testCreateWithValidSizes()
55 Table<String, Integer, Character> table4 = HashBasedTable.create(0, 0); in testCreateWithValidSizes()
73 Table<String, Integer, Character> original in testCreateCopy()
75 Table<String, Integer, Character> copy = HashBasedTable.create(original); in testCreateCopy()
DImmutableTableTest.java31 @Override protected Table<String, Integer, Character> create(Object... data) { in create()
48 Table<Character, Integer, String> expectedTable = HashBasedTable.create(); in testBuilder()
52 Table<Character, Integer, String> otherTable = HashBasedTable.create(); in testBuilder()
101 Table.Cell<Character, Integer, String> mutableCell = in testBuilder_withMutableCell()
160 private static <R, C, V> void validateTableCopies(Table<R, C, V> original) { in validateTableCopies()
161 Table<R, C, V> copy = ImmutableTable.copyOf(original); in validateTableCopies()
165 Table<R, C, V> built in validateTableCopies()
172 Table<R, C, V> original, Table<R, C, V> copy) { in validateViewOrdering()
179 Table<Character, Integer, String> table = TreeBasedTable.create(); in testCopyOf()
194 Table<Character, Integer, String> table = TreeBasedTable.create(); in testCopyOfSparse()
[all …]
/external/python/cpython2/Lib/msilib/
Dschema.py1 from . import Table
3 _Validation = Table('_Validation')
15 ActionText = Table('ActionText')
20 AdminExecuteSequence = Table('AdminExecuteSequence')
25 Condition = Table('Condition')
30 AdminUISequence = Table('AdminUISequence')
35 AdvtExecuteSequence = Table('AdvtExecuteSequence')
40 AdvtUISequence = Table('AdvtUISequence')
45 AppId = Table('AppId')
54 AppSearch = Table('AppSearch')
[all …]
/external/python/cpython2/Tools/msi/
Dschema.py1 from msilib import Table
3 _Validation = Table('_Validation')
15 ActionText = Table('ActionText')
20 AdminExecuteSequence = Table('AdminExecuteSequence')
25 Condition = Table('Condition')
30 AdminUISequence = Table('AdminUISequence')
35 AdvtExecuteSequence = Table('AdvtExecuteSequence')
40 AdvtUISequence = Table('AdvtUISequence')
45 AppId = Table('AppId')
54 AppSearch = Table('AppSearch')
[all …]
/external/tcpdump/tests/
Ddcb_ets.out43 Priority Assignment Table
46 TC Bandwidth Table
49 TSA Assignment Table
57 Priority Assignment Table
60 TC Bandwidth Table
63 TSA Assignment Table
140 Priority Assignment Table
143 TC Bandwidth Table
146 TSA Assignment Table
154 Priority Assignment Table
[all …]
/external/flatbuffers/include/flatbuffers/
Dreflection.h54 inline Table *GetAnyRoot(uint8_t *flatbuf) { in GetAnyRoot()
55 return GetMutableRoot<Table>(flatbuf); in GetAnyRoot()
57 inline const Table *GetAnyRoot(const uint8_t *flatbuf) { in GetAnyRoot()
58 return GetRoot<Table>(flatbuf); in GetAnyRoot()
62 template<typename T> T GetFieldI(const Table &table, in GetFieldI()
70 template<typename T> T GetFieldF(const Table &table, in GetFieldF()
78 inline const String *GetFieldS(const Table &table, in GetFieldS()
85 template<typename T> Vector<T> *GetFieldV(const Table &table, in GetFieldV()
95 inline VectorOfAny *GetFieldAnyV(const Table &table, in GetFieldAnyV()
101 inline Table *GetFieldT(const Table &table, in GetFieldT()
[all …]
/external/llvm/utils/TableGen/
DFixedLenDecoderEmitter.cpp72 DecoderTable Table; member
99 void emitTable(formatted_raw_ostream &o, DecoderTable &Table,
583 static void resolveTableFixups(DecoderTable &Table, const FixupList &Fixups, in resolveTableFixups() argument
599 Table[FixupIdx] = (uint8_t)Delta; in resolveTableFixups()
600 Table[FixupIdx + 1] = (uint8_t)(Delta >> 8); in resolveTableFixups()
607 TableInfo.Table.push_back(MCD::OPC_ExtractField); in emitTableEntry()
608 TableInfo.Table.push_back(StartBit); in emitTableEntry()
609 TableInfo.Table.push_back(NumBits); in emitTableEntry()
614 DecoderTable &Table = TableInfo.Table; in emitTableEntry() local
629 resolveTableFixups(Table, CurScope, Table.size()); in emitTableEntry()
[all …]

12345678910>>...27