HomeSort by relevance Sort by last modified time
    Searched defs:tbl (Results 1 - 15 of 15) sorted by null

  /external/jpeg/
jcomapi.c 88 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;
jcphuff.c 110 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...]
jdphuff.c 95 int ci, coefi, tbl; local
167 tbl = compptr->dc_tbl_no;
168 jpeg_make_d_derived_tbl(cinfo, TRUE, tbl,
169 & entropy->derived_tbls[tbl]);
172 tbl = compptr->ac_tbl_no;
173 jpeg_make_d_derived_tbl(cinfo, FALSE, tbl,
174 & entropy->derived_tbls[tbl]);
176 entropy->ac_derived_tbl = entropy->derived_tbls[tbl];
294 d_derived_tbl * tbl; local
319 tbl = entropy->derived_tbls[compptr->dc_tbl_no]
365 d_derived_tbl * tbl; local
501 d_derived_tbl * tbl; local
    [all...]
  /bionic/libm/src/
s_exp2.c 46 static const double tbl[TBLSIZE * 2] = { variable
330 * virtual tables, interleaved in the real table tbl[].
373 t = tbl[i0]; /* exp2t[i0] */
374 z -= tbl[i0 + 1]; /* eps[i0] */
  /bootable/bootloader/legacy/arch_msm7k/
clock.c 169 static unsigned tbl[] = { variable
247 unsigned *x = tbl;
266 unsigned *x = tbl;
  /external/chromium/third_party/icu/source/i18n/
ucol_cnt.cpp 29 static void uprv_growTable(ContractionTable *tbl, UErrorCode *status) {
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->size *= 2
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
534 ContractionTable *tbl = _cnttab_getContractionTable(table, element); local
561 ContractionTable *tbl = NULL; local
    [all...]
  /external/icu4c/i18n/
ucol_cnt.cpp 29 static void uprv_growTable(ContractionTable *tbl, UErrorCode *status) {
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->size *= 2
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
534 ContractionTable *tbl = _cnttab_getContractionTable(table, element); local
561 ContractionTable *tbl = NULL; local
    [all...]
  /external/openssl/crypto/asn1/
a_strnid.c 67 static void st_free(ASN1_STRING_TABLE *tbl);
126 ASN1_STRING_TABLE *tbl; local
131 tbl = ASN1_STRING_TABLE_get(nid);
132 if(tbl) {
133 mask = tbl->mask;
134 if(!(tbl->flags & STABLE_NO_MASK)) mask &= global_mask;
136 tbl->minsize, tbl->maxsize);
251 static void st_free(ASN1_STRING_TABLE *tbl)
253 if(tbl->flags & STABLE_FLAGS_MALLOC) OPENSSL_free(tbl)
    [all...]
asn1t.h 468 const ASN1_ADB_TABLE *tbl; /* Table of possible types */ member in struct:ASN1_ADB_st
469 long tblcount; /* Number of entries in tbl */
  /libcore/sqlite-jdbc/src/main/java/SQLite/
Database.java 397 * @param tbl TableResult to receive result set
401 public void get_table(String sql, String args[], TableResult tbl)
403 tbl.clear();
406 exec(sql, tbl, args);
408 if (tbl.maxrows <= 0 || !tbl.atmaxrows) {
416 if (tbl.maxrows > 0) {
417 while (tbl.nrows < tbl.maxrows && vm.step(tbl)) {
    [all...]
  /external/chromium/third_party/icu/source/common/
rbbitblb.cpp 1217 UVector *tbl = fRB->fRuleStatusVals; local
    [all...]
  /external/icu4c/common/
rbbitblb.cpp 1199 UVector *tbl = fRB->fRuleStatusVals; local
    [all...]
  /external/srec/srec/cfront/
sp_fft.c 331 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/openssl/include/openssl/
asn1t.h 468 const ASN1_ADB_TABLE *tbl; /* Table of possible types */ member in struct:ASN1_ADB_st
469 long tblcount; /* Number of entries in tbl */
  /libcore/sqlite-jdbc/src/main/native/
sqlite_jni.c 4300 transstr dbn, tbl, col; local
    [all...]

Completed in 429 milliseconds