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

<<21222324252627282930>>

  /frameworks/base/core/java/android/database/sqlite/
SQLiteDatabase.java     [all...]
  /external/mesa3d/src/mesa/main/
format_unpack.c 58 * Implemented with a 256-entry lookup table.
63 static GLfloat table[256]; local
66 /* compute lookup table now */
71 table[i] = cs / 12.92f;
74 table[i] = (GLfloat) pow((cs + 0.055) / 1.055, 2.4);
79 return table[cs8];
1472 static unpack_rgba_func table[MESA_FORMAT_COUNT]; local
    [all...]
  /external/freetype/src/sfnt/
sfdriver.c 65 * SFNT TABLE SERVICE
73 void* table; local
79 table = &face->header;
83 table = &face->horizontal;
87 table = face->vertical_info ? &face->vertical : NULL;
91 table = ( face->os2.version == 0xFFFFU ) ? NULL : &face->os2;
95 table = &face->postscript;
99 table = &face->max_profile;
103 table = face->pclt.Version ? &face->pclt : NULL;
107 table = NULL
    [all...]
  /external/pdfium/third_party/freetype/src/sfnt/
sfdriver.c 65 * SFNT TABLE SERVICE
73 void* table; local
79 table = &face->header;
83 table = &face->horizontal;
87 table = face->vertical_info ? &face->vertical : NULL;
91 table = face->os2.version == 0xFFFFU ? NULL : &face->os2;
95 table = &face->postscript;
99 table = &face->max_profile;
103 table = face->pclt.Version ? &face->pclt : NULL;
107 table = NULL
    [all...]
  /external/skia/tools/lua/
scrape_dashing.lua 12 if type(v) == "table" then
30 where t is a table of parameters that were passed to that draw-op.
47 function increment(table, key)
48 table[key] = (table[key] or 0) + 1
  /external/syslinux/gpxe/src/arch/i386/interface/pcbios/
ibft.c 47 * iSCSI boot firmware table
50 * Boot Firmware Table (iBFT)" as published by IBM at
59 /* Table header */
60 .table = {
74 .length = sizeof ( ibftab.table.control ),
166 dest = ( ( ( char * ) strings->table ) + strings->offset );
167 remaining = ( strings->table->acpi.length - strings->offset );
196 dest = ( ( ( char * ) strings->table ) + string->offset );
226 dest = ( ( ( char * ) strings->table ) + string->offset );
241 ( ( ( char * ) strings->table ) + string->offset ) : NULL )
    [all...]
  /prebuilts/go/darwin-x86/src/debug/pe/
symbol.go 15 // COFFSymbol represents single COFF symbol table record.
34 return nil, fmt.Errorf("fail to seek to symbol table: %v", err)
39 return nil, fmt.Errorf("fail to read symbol table: %v", err)
44 // isSymNameOffset checks symbol name if it is encoded as offset into string table.
54 // in COFF string table st instead.
  /prebuilts/go/linux-x86/src/debug/pe/
symbol.go 15 // COFFSymbol represents single COFF symbol table record.
34 return nil, fmt.Errorf("fail to seek to symbol table: %v", err)
39 return nil, fmt.Errorf("fail to read symbol table: %v", err)
44 // isSymNameOffset checks symbol name if it is encoded as offset into string table.
54 // in COFF string table st instead.
  /toolchain/binutils/binutils-2.25/bfd/
libcoff-in.h 59 /* These members communicate important constants about the symbol table
76 /* The string table. May be NULL. Read by
79 /* The length of the strings table. For error checking. */
253 /* COFF linker hash table entries. */
284 /* COFF linker hash table. */
293 /* Look up an entry in a COFF linker hash table. */
295 #define coff_link_hash_lookup(table, string, create, copy, follow) \
297 bfd_link_hash_lookup (&(table)->root, (string), (create), \
300 /* Traverse a COFF linker hash table. */
302 #define coff_link_hash_traverse(table, func, info)
    [all...]
  /prebuilts/go/darwin-x86/src/compress/lzw/
writer.go 39 // valid hash table entries at any given point in time. tableSize is 4x that.
42 // A hash table entry is a uint32. Zero is an invalid entry since the
69 // table is the hash table from 20-bit keys to 12-bit values. Each table
73 table [tableSize]uint32
125 for i := range e.table {
126 e.table[i] = invalidEntry
159 // If there is a hash table hit for this key then we continue the loop
162 for h, t := hash, e.table[hash]; t != invalidEntry;
    [all...]
  /prebuilts/go/darwin-x86/src/debug/dwarf/
line_test.go 25 // Line table based on readelf --debug-dump=rawline,decodedline
79 // Get the line table for the first CU.
92 var table []LineEntry
103 table = append(table, line)
110 } else if line != table[0] {
111 t.Fatal("lr.Next after Reset returned", line, "instead of", table[0])
124 } else if line != table[i] {
125 t.Fatal("lr.Next after seek to", posTable[i], "returned", line, "instead of", table[i])
130 if err := lr.SeekPC(table[0].Address-1, &line); err != ErrUnknownPC
    [all...]
  /prebuilts/go/linux-x86/src/compress/lzw/
writer.go 39 // valid hash table entries at any given point in time. tableSize is 4x that.
42 // A hash table entry is a uint32. Zero is an invalid entry since the
69 // table is the hash table from 20-bit keys to 12-bit values. Each table
73 table [tableSize]uint32
125 for i := range e.table {
126 e.table[i] = invalidEntry
159 // If there is a hash table hit for this key then we continue the loop
162 for h, t := hash, e.table[hash]; t != invalidEntry;
    [all...]
  /prebuilts/go/linux-x86/src/debug/dwarf/
line_test.go 25 // Line table based on readelf --debug-dump=rawline,decodedline
79 // Get the line table for the first CU.
92 var table []LineEntry
103 table = append(table, line)
110 } else if line != table[0] {
111 t.Fatal("lr.Next after Reset returned", line, "instead of", table[0])
124 } else if line != table[i] {
125 t.Fatal("lr.Next after seek to", posTable[i], "returned", line, "instead of", table[i])
130 if err := lr.SeekPC(table[0].Address-1, &line); err != ErrUnknownPC
    [all...]
  /frameworks/base/tools/aapt2/compile/
PseudolocaleGenerator_test.cpp 181 std::unique_ptr<ResourceTable> table = local
192 String* val = test::GetValue<String>(table.get(), "android:string/four");
198 ASSERT_TRUE(generator.Consume(context.get(), table.get()));
202 test::GetValueForConfig<String>(table.get(), "android:string/one",
205 test::GetValueForConfig<String>(table.get(), "android:string/one",
210 test::GetValueForConfig<String>(table.get(), "android:string/two",
213 test::GetValueForConfig<String>(table.get(), "android:string/two",
217 val = test::GetValueForConfig<String>(table.get(), "android:string/three",
223 test::GetValueForConfig<String>(table.get(), "android:string/three",
228 test::GetValueForConfig<String>(table.get(), "android:string/four"
238 std::unique_ptr<ResourceTable> table = util::make_unique<ResourceTable>(); local
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/data/
PhotoProvider.java 71 * Internal database table used for account information
73 public static final String TABLE = "accounts";
77 public static final Uri CONTENT_URI = Uri.withAppendedPath(BASE_CONTENT_URI, TABLE);
94 /** Internal database table used for basic photo information. */
95 public static final String TABLE = "photos";
97 public static final Uri CONTENT_URI = Uri.withAppendedPath(BASE_CONTENT_URI, TABLE);
133 /** Internal database table used album information. */
134 public static final String TABLE = "albums";
136 public static final Uri CONTENT_URI = Uri.withAppendedPath(BASE_CONTENT_URI, TABLE);
170 /** Internal database table used metadata information. *
295 String table = getTableFromMatch(match, uri); local
320 String table = getTableFromMatch(match, uri); local
339 String table = getTableFromMatch(match, uri); local
391 String table; local
498 String table = getTableFromMatch(match, uri); local
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MapMakerInternalMapTest.java 98 assertEquals(16 / map.segments.length, map.segments[0].table.length());
183 assertEquals(segmentSize, map.segments[i].table.length());
499 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local
500 int index = hash & (table.length() - 1);
509 table.set(index, entry);
527 table.set(index, nullEntry);
539 table.set(index, dummy);
550 table.set(index, dummy);
575 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table local
619 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local
757 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local
797 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local
880 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local
1014 AtomicReferenceArray<ReferenceEntry<K, V>> table = segment.table; local
1033 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local
1065 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local
1099 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local
1146 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local
1449 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local
    [all...]
  /external/flatbuffers/src/
idl_gen_text.cpp 25 static bool GenStruct(const StructDef &struct_def, const Table *table,
181 reinterpret_cast<const Table *>(val),
190 reinterpret_cast<const Table *>(val),
227 const Table *table, bool fixed,
232 reinterpret_cast<const Struct *>(table)->GetField<T>(fd.value.offset) :
233 table->GetField<T>(fd.value.offset, 0), fd.value.type, indent, nullptr,
238 static bool GenFieldOffset(const FieldDef &fd, const Table *table, bool fixed
    [all...]
  /external/fonttools/Lib/fontTools/
subset.py 27 assert clazz.__name__ != 'DefaultTable', 'Oops, table class not found.'
585 lookup = s.table.LookupList.Lookup[ll.LookupListIndex]
612 lookup = s.table.LookupList.Lookup[ll.LookupListIndex]
630 lookup = s.table.LookupList.Lookup[ll.LookupListIndex]
    [all...]
  /frameworks/minikin/tests/unittest/
CmapCoverageTest.cpp 61 // Returns valid cmap format 4 table contents. All glyph ID is same value as code point. (e.g.
112 // Returns valid cmap format 4 table contents. All glyph ID is same value as code point. (e.g.
156 numOfRanges * 4 /* size of Unicode Range Table */;
242 const std::vector<uint8_t>& table) {
244 out.insert(out.end(), table.begin(), table.end());
308 SCOPED_TRACE("Reading beyond buffer size - Invalid offset in encoding table");
438 SCOPED_TRACE("Too small table cmap size");
439 std::vector<uint8_t> table = buildCmapFormat4Table(std::vector<uint16_t>({'a', 'a'})); local
440 table.resize(2); // Remove trailing data
452 std::vector<uint8_t> table = buildCmapFormat4Table(std::vector<uint16_t>({'a', 'a'})); local
464 std::vector<uint8_t> table = buildCmapFormat4Table(std::vector<uint16_t>({'b', 'b'})); local
481 std::vector<uint8_t> table = buildCmapFormat12Table(std::vector<uint32_t>({'a', 'a'})); local
494 std::vector<uint8_t> table = buildCmapFormat12Table(std::vector<uint32_t>({'a', 'a'})); local
507 std::vector<uint8_t> table = buildCmapFormat12Table(std::vector<uint32_t>({'a', 'a'})); local
545 const std::vector<uint8_t>& table; member in struct:minikin::LowerPriorityTable
574 const std::vector<uint8_t>& table; member in struct:minikin::LowerPriorityTable
602 std::vector<uint8_t> table = buildCmapFormat4Table(std::vector<uint16_t>({'b', 'b'})); local
616 std::vector<uint8_t> table = buildCmapFormat4Table(std::vector<uint16_t>({'b', 'b'})); local
630 std::vector<uint8_t> table = buildCmapFormat4Table(std::vector<uint16_t>({'b', 'b'})); local
650 std::vector<uint8_t> table = buildCmapFormat12Table(std::vector<uint32_t>({'b', 'b'})); local
664 std::vector<uint8_t> table = buildCmapFormat12Table(std::vector<uint32_t>({'b', 'b'})); local
678 std::vector<uint8_t> table = buildCmapFormat12Table(std::vector<uint32_t>({'b', 'b'})); local
    [all...]
  /external/autotest/frontend/client/src/autotest/common/spreadsheet/
Spreadsheet.java 5 import autotest.common.table.FragmentedTable;
6 import autotest.common.table.TableRenderer;
138 // set main table to match header sizes
144 // render the main data table
161 // shrink the scroller if the table ended up smaller than the window
201 private void setupTableInput(RightClickTable table) {
202 table.addContextMenuHandler(this);
203 table.addClickHandler(this);
206 protected void killPaddingAndSpacing(HTMLTable table) {
207 table.setCellSpacing(0)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
zutil.c 212 local ptr_table table[MAX_PTR]; variable
213 /* This table is used to remember the original form of pointers
215 * Since MSDOS is not a preemptive multitasking OS, this table is not
235 table[next_ptr].org_ptr = buf;
240 table[next_ptr++].new_ptr = buf;
253 if (ptr != table[n].new_ptr) continue;
255 farfree(table[n].org_ptr);
257 table[n-1] = table[n];
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/dropSiteRootFiles/
index.php 15 ?> <table border=0 cellspacing=5 cellpadding=2 width="100%" > <tr> <td align=left width="72%">
19 </table><table border=0 cellspacing=5 cellpadding=2 width="100%" > <tr> <td align=LEFT valign=TOP colspan="2" bgcolor="#0080C0"><b><font color="#FFFFFF" face="Arial,Helvetica">Latest
28 </table><?php
91 ?> <table width="100%" cellspacing=0 cellpadding=3 align=center> <td align=left>
92 <TABLE width="100%" CELLSPACING=0 CELLPADDING=3> <tr> <td width=\"30%\"><b>Build
111 ?> </table></table>&nbsp; <?php
115 <table width=\"100%\" cellspacing=0 cellpadding=3 align=center>
122 <TABLE width=\"100%\" CELLSPACING=0 CELLPADDING=3>
    [all...]
  /external/libchrome/sandbox/win/src/sidestep/
mini_disassembler.cpp 122 const OpcodeTable& table = s_ia32_opcode_map_[table_index]; // Get our table local
123 unsigned char current_byte = (*start_byte) >> table.shift_;
124 current_byte = current_byte & table.mask_; // Mask out the bits we will use
126 // Check whether the byte we have is inside the table we have.
127 if (current_byte < table.min_lim_ || current_byte > table.max_lim_) {
132 const Opcode& opcode = table.table_[current_byte];
142 // the table for the opcode's next byte.
176 if (table.mask_ != 0xff)
    [all...]
  /external/pdfium/third_party/zlib_v128/
zutil.c 214 local ptr_table table[MAX_PTR];
215 /* This table is used to remember the original form of pointers
217 * Since MSDOS is not a preemptive multitasking OS, this table is not
237 table[next_ptr].org_ptr = buf;
242 table[next_ptr++].new_ptr = buf;
255 if (ptr != table[n].new_ptr) continue;
257 farfree(table[n].org_ptr);
259 table[n-1] = table[n];
  /external/syslinux/com32/lib/zlib/
zutil.c 208 local ptr_table table[MAX_PTR]; variable
209 /* This table is used to remember the original form of pointers
211 * Since MSDOS is not a preemptive multitasking OS, this table is not
231 table[next_ptr].org_ptr = buf;
236 table[next_ptr++].new_ptr = buf;
249 if (ptr != table[n].new_ptr) continue;
251 farfree(table[n].org_ptr);
253 table[n-1] = table[n];

Completed in 2192 milliseconds

<<21222324252627282930>>