HomeSort by relevance Sort by last modified time
    Searched defs:Table (Results 1 - 25 of 253) sorted by null

1 2 3 4 5 6 7 8 91011

  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV5E/
pred_lt4_1_opt.s 48 ADR r8, Table
457 Table:
458 .word inter4_2-Table
  /external/flatbuffers/tests/MyGame/Example2/
Monster.go 10 _tab flatbuffers.Table
25 func (rcv *Monster) Table() flatbuffers.Table {
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVM_Mixer_TimeConstant.c 70 LVM_UINT32 Table[] = {ALPHA_0, /* Log spaced look-up table */
132 /* Normalize to get the table index and interpolation factor */
151 Diff = (LVM_INT32)(Table[Shift] - Table[Shift+1]);
153 Product = Table[Shift+1] + (LVM_UINT32)Diff;
  /external/sfntly/cpp/src/sfntly/table/
table.cc 21 #include "sfntly/table/table.h"
25 #include "sfntly/table/bitmap/ebdt_table.h"
26 #include "sfntly/table/bitmap/eblc_table.h"
27 #include "sfntly/table/bitmap/ebsc_table.h"
28 #include "sfntly/table/core/cmap_table.h"
29 #include "sfntly/table/core/font_header_table.h"
30 #include "sfntly/table/core/horizontal_device_metrics_table.h"
31 #include "sfntly/table/core/horizontal_header_table.h"
32 #include "sfntly/table/core/horizontal_metrics_table.h
    [all...]
  /art/runtime/
reference_table.h 36 // Maintain a table of references. Used for JNI monitor references and
58 TrackingAllocator<GcRoot<mirror::Object>, kAllocatorTagReferenceTable>> Table;
59 static void Dump(std::ostream& os, Table& entries)
64 Table entries_;
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Table/
Table.py 2 # This file is used to create/update/query/erase a common table
21 # This class defined a common table
26 # @param TableName: Name of the table
28 class Table(object):
31 self.Table = ''
34 ## Create table
36 # Create a table
43 ## Insert table
45 # Insert a record into a table
50 ## Query table
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Print/
BoxDraw.c 132 UNICODE_TO_CHAR *Table;
143 for (Table = UnicodeToPcAnsiOrAscii; Table->Unicode != 0x0000; Table++) {
144 if (Graphic == Table->Unicode) {
146 *PcAnsi = Table->PcAnsi;
149 *Ascii = Table->Ascii;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/
BoxDraw.c 132 UNICODE_TO_CHAR *Table;
143 for (Table = UnicodeToPcAnsiOrAscii; Table->Unicode != 0x0000; Table++) {
144 if (Graphic == Table->Unicode) {
146 *PcAnsi = Table->PcAnsi;
149 *Ascii = Table->Ascii;
  /external/flatbuffers/tests/MyGame/Example/
Test.go 18 func (rcv *Test) Table() flatbuffers.Table {
19 return rcv._tab.Table
TestSimpleTableWithEnum.go 10 _tab flatbuffers.Table
25 func (rcv *TestSimpleTableWithEnum) Table() flatbuffers.Table {
Stat.go 10 _tab flatbuffers.Table
25 func (rcv *Stat) Table() flatbuffers.Table {
Vec3.go 18 func (rcv *Vec3) Table() flatbuffers.Table {
19 return rcv._tab.Table
  /external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
StructInNestedNS.go 18 func (rcv *StructInNestedNS) Table() flatbuffers.Table {
19 return rcv._tab.Table
TableInNestedNS.go 10 _tab flatbuffers.Table
25 func (rcv *TableInNestedNS) Table() flatbuffers.Table {
  /external/flatbuffers/tests/namespace_test/NamespaceA/
SecondTableInA.go 10 _tab flatbuffers.Table
25 func (rcv *SecondTableInA) Table() flatbuffers.Table {
TableInFirstNS.go 10 _tab flatbuffers.Table
25 func (rcv *TableInFirstNS) Table() flatbuffers.Table {
  /external/lzma/CS/7zip/Common/
CRC.cs 7 public static readonly uint[] Table;
11 Table = new uint[256];
21 Table[i] = r;
31 _value = Table[(((byte)(_value)) ^ b)] ^ (_value >> 8);
37 _value = Table[(((byte)(_value)) ^ data[offset + i])] ^ (_value >> 8);
  /external/lzma/Java/SevenZip/
CRC.java 7 static public int[] Table = new int[256];
19 Table[i] = r;
33 _value = Table[(_value ^ data[offset + i]) & 0xFF] ^ (_value >>> 8);
40 _value = Table[(_value ^ data[i]) & 0xFF] ^ (_value >>> 8);
45 _value = Table[(_value ^ b) & 0xFF] ^ (_value >>> 8);
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
boxdraw.c 127 UNICODE_TO_CHAR *Table;
138 for (Table = UnicodeToPcAnsiOrAscii; Table->Unicode != 0x0000; Table++) {
139 if (Graphic == Table->Unicode) {
141 *PcAnsi = Table->PcAnsi;
144 *Ascii = Table->Ascii;
  /cts/hostsidetests/inputmethodservice/deviceside/lib/src/android/inputmethodservice/cts/db/
Table.java 26 * Abstraction of SQLite database table.
28 public abstract class Table<E> {
33 protected Table(final String name, final Entity<E> entity) {
47 * Returns SQL statement to create this table, such that
48 * "CREATE TABLE IF NOT EXISTS table_name \
53 return "CREATE TABLE IF NOT EXISTS " + mName + " " + mEntity.createEntitySql();
  /external/dng_sdk/source/
dng_1d_table.h 15 * Definition of a lookup table based 1D floating-point to floating-point function abstraction using linear interpolation.
32 /// \brief A 1D floating-point lookup table using linear interpolation.
39 /// Constants denoting size of table.
43 kTableBits = 12, //< Table is always a power of 2 in size. This is log2(kTableSize).
44 kTableSize = (1 << kTableBits) //< Number of entries in table.
59 /// Set up table, initialize entries using functiion.
61 /// \param allocator Memory allocator from which table memory is allocated.
62 /// \param function Table is initialized with values of finction.Evalluate(0.0) to function.Evaluate(1.0).
99 /// Direct access function for table data.
101 const real32 * Table () cons
    [all...]
  /external/flatbuffers/net/FlatBuffers/
Table.cs 25 public struct Table
97 // Initialize any Table-derived type to point to the union at the given offset.
  /external/flatbuffers/php/
Table.php 20 abstract class Table
103 * @param Table $table
105 * @return Table
107 protected function __union($table, $offset)
110 $table->bb_pos = $offset + $this->bb->getInt($offset);
111 $table->bb = $this->bb;
112 return $table;
  /external/flatbuffers/python/flatbuffers/
table.py 19 class Table(object):
20 """Table wraps a byte slice and provides read access to its data.
33 """Offset provides access into the Table's vtable.
78 """Union initializes any Table-derived type to point to the union at
80 assert type(t2) is Table
  /external/flatbuffers/tests/namespace_test/NamespaceC/
TableInC.go 10 _tab flatbuffers.Table
25 func (rcv *TableInC) Table() flatbuffers.Table {

Completed in 343 milliseconds

1 2 3 4 5 6 7 8 91011