Searched refs:tbl (Results 1 - 25 of 25) sorted by relevance

/external/opencore/fileformats/avi/parser/src/
H A Dpv_avifile_indx.cpp62 IdxTblType tbl; local
63 tbl.chunkId = data;
65 if (PV_AVI_FILE_PARSER_SUCCESS != PVAviFileParserUtils::read32(aFp, (tbl.flags)))
78 if (tbl.flags & AVIIF_KEYFRAME)
79 tbl.isKeyFrame = true;
80 if (tbl.flags & AVIIF_LIST)
81 tbl.ifRecList = true;
82 if (tbl.flags & AVIIF_NO_TIME)
83 tbl.ifNoTime = true;
85 if (PV_AVI_FILE_PARSER_SUCCESS != PVAviFileParserUtils::read32(aFp, tbl
[all...]
/external/openssl/crypto/asn1/
H A Dt_bitst.c65 BIT_STRING_BITNAME *tbl, int indent)
70 for(bnam = tbl; bnam->lname; bnam++) {
82 BIT_STRING_BITNAME *tbl)
85 bitnum = ASN1_BIT_STRING_num_asc(name, tbl);
94 int ASN1_BIT_STRING_num_asc(char *name, BIT_STRING_BITNAME *tbl) argument
97 for(bnam = tbl; bnam->lname; bnam++) {
64 ASN1_BIT_STRING_name_print(BIO *out, ASN1_BIT_STRING *bs, BIT_STRING_BITNAME *tbl, int indent) argument
81 ASN1_BIT_STRING_set_asc(ASN1_BIT_STRING *bs, char *name, int value, BIT_STRING_BITNAME *tbl) argument
H A Da_strnid.c67 static void st_free(ASN1_STRING_TABLE *tbl);
127 ASN1_STRING_TABLE *tbl; local
132 tbl = ASN1_STRING_TABLE_get(nid);
133 if(tbl) {
134 mask = tbl->mask;
135 if(!(tbl->flags & STABLE_NO_MASK)) mask &= global_mask;
137 tbl->minsize, tbl->maxsize);
251 static void st_free(ASN1_STRING_TABLE *tbl) argument
253 if(tbl
[all...]
H A Dtasn_utl.c262 for (atbl = adb->tbl, i = 0; i < adb->tblcount; i++, atbl++)
H A Dasn1.h811 BIT_STRING_BITNAME *tbl, int indent);
813 int ASN1_BIT_STRING_num_asc(char *name, BIT_STRING_BITNAME *tbl);
815 BIT_STRING_BITNAME *tbl);
H A Dasn1t.h456 const ASN1_ADB_TABLE *tbl; /* Table of possible types */ member in struct:ASN1_ADB_st
457 long tblcount; /* Number of entries in tbl */
/external/jpeg/
H A Djcomapi.c88 JQUANT_TBL *tbl; local
90 tbl = (JQUANT_TBL *)
92 tbl->sent_table = FALSE; /* make sure this is false in any new table */
93 return tbl;
100 JHUFF_TBL *tbl; local
102 tbl = (JHUFF_TBL *)
104 tbl->sent_table = FALSE; /* make sure this is false in any new table */
105 return tbl;
H A Djdphuff.c96 int ci, coefi, tbl; local
168 tbl = compptr->dc_tbl_no;
169 jpeg_make_d_derived_tbl(cinfo, TRUE, tbl,
170 & entropy->derived_tbls[tbl]);
173 tbl = compptr->ac_tbl_no;
174 jpeg_make_d_derived_tbl(cinfo, FALSE, tbl,
175 & entropy->derived_tbls[tbl]);
177 entropy->ac_derived_tbl = entropy->derived_tbls[tbl];
295 d_derived_tbl * tbl; local
320 tbl
366 d_derived_tbl * tbl; local
502 d_derived_tbl * tbl; local
[all...]
H A Djcphuff.c110 int ci, tbl; local
154 tbl = compptr->dc_tbl_no;
156 entropy->ac_tbl_no = tbl = compptr->ac_tbl_no;
161 if (tbl < 0 || tbl >= NUM_HUFF_TBLS)
162 ERREXIT1(cinfo, JERR_NO_HUFF_TABLE, tbl);
165 if (entropy->count_ptrs[tbl] == NULL)
166 entropy->count_ptrs[tbl] = (long *)
169 MEMZERO(entropy->count_ptrs[tbl], 257 * SIZEOF(long));
173 jpeg_make_c_derived_tbl(cinfo, is_DC_band, tbl,
286 c_derived_tbl * tbl = entropy->derived_tbls[tbl_no]; local
771 int ci, tbl; local
[all...]
/external/icu4c/i18n/
H A Ducol_cnt.cpp29 static void uprv_growTable(ContractionTable *tbl, UErrorCode *status) { argument
30 if(tbl->position == tbl->size) {
31 uint32_t *newData = (uint32_t *)uprv_realloc(tbl->CEs, 2*tbl->size*sizeof(uint32_t));
36 UChar *newCPs = (UChar *)uprv_realloc(tbl->codePoints, 2*tbl->size*sizeof(UChar));
42 tbl->CEs = newData;
43 tbl->codePoints = newCPs;
44 tbl
54 CntTable *tbl = (CntTable *)uprv_malloc(sizeof(CntTable)); local
354 ContractionTable *tbl = NULL; local
373 ContractionTable *tbl = NULL; local
417 ContractionTable *tbl = NULL; local
445 ContractionTable *tbl = NULL; local
472 ContractionTable *tbl = NULL; local
480 _cnttab_findCP(ContractionTable *tbl, UChar codePoint) argument
499 _cnttab_getCE(ContractionTable *tbl, int32_t position) argument
534 ContractionTable *tbl = _cnttab_getContractionTable(table, element); local
561 ContractionTable *tbl = NULL; local
[all...]
/external/clearsilver/python/examples/base/
H A Dodb_test.py87 tbl = AgentsTable(db,"agents")
98 a_row = tbl.fetchRow( ("agent_id", 1000) )
111 newrow = tbl.newRow()
123 a_row = tbl.fetchRow( ("agent_id", 1) )
146 b_row = tbl.fetchRow( ("agent_id", 1) )
158 repl_row = tbl.newRow(replace=1)
164 b_row = tbl.fetchRow( ("agent_id", a_row.agent_id) )
217 rows = tbl.fetchRows( ('agent_id', 1) )
227 rows = tbl.fetchAllRows()
239 row = tbl
[all...]
H A Dodb.py36 # tbl = AgentsTable(db,"agents")
39 # agent_row = tbl.newRow()
45 # get_row = tbl.fetchRow( ('agent_id', agent_row.agent_id) )
50 # list_rows = tbl.fetchRows( ('login', "foo") )
126 tbl = tblclass(self, tblname, rowClass=rowClass, check=check,
128 self._tables[attrname] = tbl
129 return tbl
132 for name, tbl in self._tables.items():
133 tbl.db = None
174 for attrname, tbl i
[all...]
/external/kernel-headers/original/asm-arm/arch/
H A Dgpio-switch.h51 extern void omap_register_gpio_switches(const struct omap_gpio_switch *tbl,
/external/e2fsprogs/lib/ss/
H A Dexecute_cmd.c26 * get_request(tbl, idx)
30 * by tbl.
32 * tbl (ss_request_table *)
45 static struct _ss_request_entry * get_request (tbl, idx)
46 ss_request_table * tbl;
49 struct _ss_request_table *tbl1 = (struct _ss_request_table *) tbl;
54 #define get_request(tbl,idx) ((tbl) -> requests + (idx))
H A Dlisten.c144 #define get_request(tbl,idx) ((tbl) -> requests + (idx))
/external/openssl/crypto/0.9.9-dev/aes/
H A Daes-armv4.pl36 $tbl="r10";
160 sub $tbl,r3,#AES_encrypt-AES_Te @ Te
250 ldr $t1,[$tbl,$i1,lsl#2] @ Te3[s0>>0]
251 ldr $s0,[$tbl,$s0,lsl#2] @ Te0[s0>>24]
252 ldr $t2,[$tbl,$i2,lsl#2] @ Te2[s0>>8]
253 ldr $t3,[$tbl,$i3,lsl#2] @ Te1[s0>>16]
259 ldr $i1,[$tbl,$i1,lsl#2] @ Te1[s1>>16]
260 ldr $s1,[$tbl,$s1,lsl#2] @ Te0[s1>>24]
261 ldr $i2,[$tbl,$i2,lsl#2] @ Te3[s1>>0]
262 ldr $i3,[$tbl,
[all...]
/external/webkit/SunSpider/tests/sunspider-0.9/
H A D3d-raytrace.js320 var tbl = createVector(-10, 10, 10);
334 triangles[i++] = new Triangle(tbl, tbr, bbr);
335 triangles[i++] = new Triangle(tbl, bbr, bbl);
339 triangles[i++] = new Triangle(tbl, tfl, bbl);
347 triangles[i++] = new Triangle(tbl, tbr, tfr);
348 triangles[i++] = new Triangle(tbl, tfr, tfl);
/external/webkit/SunSpider/tests/sunspider-0.9.1/
H A D3d-raytrace.js320 var tbl = createVector(-10, 10, 10);
334 triangles[i++] = new Triangle(tbl, tbr, bbr);
335 triangles[i++] = new Triangle(tbl, bbr, bbl);
339 triangles[i++] = new Triangle(tbl, tfl, bbl);
347 triangles[i++] = new Triangle(tbl, tbr, tfr);
348 triangles[i++] = new Triangle(tbl, tfr, tfl);
/external/iproute2/misc/
H A Drtacct.c97 __u32 *read_kern_table(__u32 *tbl) argument
125 nread(fd, (char*)tbl, 256*16);
128 memset(tbl, 0, 256*16);
130 return tbl;
/external/srec/srec/cfront/
H A Dsp_fft.c331 unsigned forward, reverse, *tbl; local
335 tbl = (unsigned*) CALLOC(n, sizeof(unsigned), "srfft.bitreverseTbl");
336 for (j = 0; j < n; j++) tbl[j] = 0;
345 if (forward & j) tbl[j] |= reverse;
351 pthis->m_bitreverseTbl = tbl;
/external/icu4c/common/
H A Drbbitblb.cpp1217 UVector *tbl = fRB->fRuleStatusVals; local
1222 while (nextRecord < tbl->size()) {
1224 nextRecord = thisRecord + tbl->elementAti(thisRecord) + 1;
1227 RBBIDebugPrintf(" %5d", tbl->elementAti(i));
/external/e2fsprogs/e2fsck/
H A Dunix.c354 static float calc_percent(struct percent_tbl *tbl, int pass, int curr, argument
361 if (pass > tbl->max_pass || max == 0)
364 return ((percent * (tbl->table[pass] - tbl->table[pass-1]))
365 + tbl->table[pass-1]);
/external/openssl/include/openssl/
H A Dasn1.h811 BIT_STRING_BITNAME *tbl, int indent);
813 int ASN1_BIT_STRING_num_asc(char *name, BIT_STRING_BITNAME *tbl);
815 BIT_STRING_BITNAME *tbl);
H A Dasn1t.h456 const ASN1_ADB_TABLE *tbl; /* Table of possible types */ member in struct:ASN1_ADB_st
457 long tblcount; /* Number of entries in tbl */
/external/bison/djgpp/
H A Dconfig.bat410 redir -e /dev/null rm %XSRC%/po/cat-id-tbl.c

Completed in 373 milliseconds