Searched defs:table (Results 126 - 150 of 807) sorted by relevance

1234567891011>>

/external/iproute2/netem/
H A Dparetonormal.c2 * Paretoormal distribution table generator
54 double table[TABLESIZE+1]; local
58 table[i] = x;
61 "# This is the distribution table for the paretonormal distribution.\n"
67 normvalue = (int) rint(table[i]*TABLEFACTOR);
/external/kernel-headers/original/uapi/linux/netfilter_bridge/
H A Debt_among.h11 * Write-once-read-many hash table, used for checking if a given
24 * hash table, which are stored also in form of pairs of integers
40 int table[257]; member in struct:ebt_mac_wormhash
/external/libexif/libexif/canon/
H A Dmnote-canon-tag.c33 } table[] = { variable in typeref:struct:__anon23648
134 for (i = 0; i < sizeof (table) / sizeof (table[0]); i++)
135 if (table[i].tag == t) return table[i].name; /* do not translate */
164 for (i = 0; i < sizeof (table) / sizeof (table[0]); i++)
165 if (table[i].tag == t) return (_(table[i].title));
193 for (i = 0; i < sizeof (table) / sizeo
[all...]
/external/libnl/src/
H A Dnl-fib-lookup.c19 " -t, --table <table> Table id\n"
36 int table = RT_TABLE_UNSPEC, scope = RT_SCOPE_UNIVERSE; local
42 {"table", 1, 0, 't'},
57 table = strtoul(optarg, NULL, 0);
90 flnl_request_set_table(request, table);
/external/lzma/C/
H A D7zCrc.c15 typedef UInt32 (MY_FAST_CALL *CRC_FUNC)(UInt32 v, const void *data, size_t size, const UInt32 *table);
22 #define CRC_UPDATE_BYTE_2(crc, b) (table[((crc) ^ (b)) & 0xFF] ^ ((crc) >> 8))
24 static UInt32 MY_FAST_CALL CrcUpdateT1(UInt32 v, const void *data, size_t size, const UInt32 *table) argument
34 UInt32 MY_FAST_CALL CrcUpdateT4(UInt32 v, const void *data, size_t size, const UInt32 *table);
35 UInt32 MY_FAST_CALL CrcUpdateT8(UInt32 v, const void *data, size_t size, const UInt32 *table);
/external/sfntly/cpp/src/sample/subtly/
H A Dstats.cc20 #include "sfntly/table/table.h"
38 TablePtr table = font->GetTable(tag); local
39 return static_cast<double>(table->DataLength()) / TotalFontSize(font) * 100;
/external/sfntly/cpp/src/sfntly/table/
H A Dtable.cc21 #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/cor
68 NotifyPostTableBuild(FontDataTable* table) argument
[all...]
/external/sfntly/cpp/src/test/
H A Dotf_basic_editing_test.cc20 #include "sfntly/table/core/font_header_table.h"
64 // ensure every table had a builder
68 TablePtr table = (*i).second; local
69 HeaderPtr header = table->header();
H A Dverify_maxp.cc20 #include "sfntly/table/core/maximum_profile_table.h"
40 static bool VerifyMAXP(Table* table) { argument
41 MaximumProfileTablePtr maxp = down_cast<MaximumProfileTable*>(table);
/external/skia/src/core/
H A DSkFilterProc.h21 inline SkFilterProc SkGetBilinearFilterProc(const SkFilterProc* table, argument
24 SkASSERT(table);
29 return table[(y << 2) | x];
32 inline SkFilterProc SkGetBilinearFilterProc22(const SkFilterProc* table, argument
35 SkASSERT(table);
40 return table[(y << 2) | x];
43 inline const SkFilterProc* SkGetBilinearFilterProc22Row(const SkFilterProc* table, argument
46 SkASSERT(table);
48 return &table[y << 30 >> 28];
66 inline SkFilter32Proc SkGetFilter32Proc22(const SkFilter32Proc* table, argument
77 SkGetFilter32Proc22Row(const SkFilter32Proc* table, unsigned y) argument
101 SkGetBilinearFilterPtrProc(const SkFilterPtrProc* table, SkFixed x, SkFixed y) argument
115 SkGetBilinearFilterPtrProcYTable(const SkFilterPtrProc* table, SkFixed y) argument
126 SkGetBilinearFilterPtrXProc(const SkFilterPtrProc* table, SkFixed x) argument
[all...]
/external/skia/src/images/
H A Dtransform_scanline.h89 const SkUnPreMultiply::Scale* SK_RESTRICT table = local
100 SkUnPreMultiply::Scale scale = table[a];
119 const SkUnPreMultiply::Scale* SK_RESTRICT table = local
130 SkUnPreMultiply::Scale scale = table[a];
/external/skia/src/opts/
H A DSkBitmapProcState_opts_arm.cpp32 const uint16_t* SK_RESTRICT table = s.fBitmap->getColorTable()->lock16BitCache(); local
45 uint16_t dstValue = table[src];
78 "ldrh r4, [%[table], r4] \n\t" // load pixel 0 RGB565 from colmap
80 "ldrh r5, [%[table], r5] \n\t" // load pixel 1 RGB565 from colmap
82 "ldrh r6, [%[table], r6] \n\t" // load pixel 2 RGB565 from colmap
84 "ldrh r7, [%[table], r7] \n\t" // load pixel 3 RGB565 from colmap
86 "ldrh r8, [%[table], r8] \n\t" // load pixel 4 RGB565 from colmap
87 "ldrh r9, [%[table], r9] \n\t" // load pixel 5 RGB565 from colmap
88 "ldrh r10, [%[table], r10] \n\t" // load pixel 6 RGB565 from colmap
89 "ldrh r11, [%[table], r1
123 const SkPMColor* SK_RESTRICT table = s.fBitmap->getColorTable()->lockColors(); local
[all...]
/external/srec/srec/cfront/
H A Dlog_tabl.c54 for (ii = 0; ii < num_bits; ii++) /* one less than the table size in
63 logtab->table = logtab__table;
65 int* table = (int *) CALLOC(logtab->size + 1, sizeof(int), "cfront.logtable"); local
66 logtab->table = table;
73 table[ii] = (int)(val + 0.5);
75 log_report("log table: %d %d\n", ii, table[ii]);
77 PRINT_SOME_CODE(" %i,", table[ii]);
103 (int)((shift) *(logtab->shift) + logtab->table[operan
[all...]
/external/webp/src/enc/
H A Dcost.h67 static WEBP_INLINE int VP8LevelCost(const uint16_t* const table, int level) { argument
69 + table[(level > MAX_VARIABLE_LEVEL) ? MAX_VARIABLE_LEVEL : level];
/external/blktrace/doc/
H A Dblktrace.tex486 & & action specifiers in section~\ref{sec:act-table} \\ \hline
593 \emph{a} & Action, a (small) string (1 or 2 characters) -- see table below for more details \\ \hline
627 \subsubsection{\label{sec:act-table}Action Table}
628 The following table shows the various actions which may be output.
648 \subsubsection{\label{sec:act-table}RWBS Description}
/external/chromium_org/android_webview/browser/
H A Dgpu_memory_buffer_factory_impl.cc112 AwDrawGLFunctionTable* table) {
113 g_gl_draw_functions = table;
111 SetAwDrawGLFunctionTable( AwDrawGLFunctionTable* table) argument
/external/chromium_org/base/metrics/
H A Dstats_counters.cc40 StatsTable* table = StatsTable::current(); local
41 if (!table)
46 counter_id_ = table->FindCounter(name_);
47 if (table->GetSlot() == 0) {
48 if (!table->RegisterThread(std::string())) {
59 return table->GetLocation(counter_id_, table->GetSlot());
61 // counter_id_ was zero, which means the table is full.
/external/chromium_org/chrome/browser/signin/
H A Dsignin_error_notifier_ash_unittest.cc210 ErrorTableEntry table[] = { local
225 COMPILE_ASSERT(ARRAYSIZE_UNSAFE(table) == GoogleServiceAuthError::NUM_STATES,
228 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(table); ++i) {
232 GoogleServiceAuthError(table[i].error_state));
235 ASSERT_EQ(table[i].is_error, notification != NULL);
236 if (table[i].is_error) {
/external/chromium_org/components/webdata/common/
H A Dweb_database.cc51 void WebDatabase::AddTable(WebDatabaseTable* table) { argument
52 tables_[table->GetTypeKey()] = table;
166 // Give each table a chance to migrate to this version.
/external/chromium_org/content/browser/renderer_host/pepper/
H A Dpepper_truetype_font_host.cc94 uint32_t table,
109 table,
93 OnHostMsgGetTable(HostMessageContext* context, uint32_t table, int32_t offset, int32_t max_data_length) argument
/external/chromium_org/ppapi/cpp/dev/
H A Dtruetype_font_dev.cc143 uint32_t table,
150 table, offset, max_data_length,
142 GetTable( uint32_t table, int32_t offset, int32_t max_data_length, const CompletionCallbackWithOutput<std::vector<char> >& cc) argument
/external/chromium_org/ppapi/native_client/tests/ppapi_test_lib/
H A Dmodule_instance.cc43 static PluginInterfaceTable table; local
44 return &table;
/external/chromium_org/ppapi/proxy/
H A Dtruetype_font_resource.cc76 uint32_t table,
83 PpapiHostMsg_TrueTypeFont_GetTable(table, offset, max_data_length),
75 GetTable( uint32_t table, int32_t offset, int32_t max_data_length, const PP_ArrayOutput& output, scoped_refptr<TrackedCallback> callback) argument
/external/chromium_org/ppapi/thunk/
H A Dppb_truetype_font_dev_thunk.cc86 uint32_t table,
95 return enter.SetResult(enter.object()->GetTable(table,
85 GetTable(PP_Resource font, uint32_t table, int32_t offset, int32_t max_data_length, struct PP_ArrayOutput output, struct PP_CompletionCallback callback) argument
/external/chromium_org/sandbox/win/src/sidestep/
H A Dmini_disassembler.cpp122 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
[all...]

Completed in 6472 milliseconds

1234567891011>>