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

/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djcomapi.c92 JQUANT_TBL *tbl; local
94 tbl = (JQUANT_TBL *)
96 tbl->sent_table = FALSE; /* make sure this is false in any new table */
97 return tbl;
104 JHUFF_TBL *tbl; local
106 tbl = (JHUFF_TBL *)
108 tbl->sent_table = FALSE; /* make sure this is false in any new table */
109 return tbl;
H A Djdphuff.c100 int ci, coefi, tbl; local
172 tbl = compptr->dc_tbl_no;
173 jpeg_make_d_derived_tbl(cinfo, TRUE, tbl,
174 & entropy->derived_tbls[tbl]);
177 tbl = compptr->ac_tbl_no;
178 jpeg_make_d_derived_tbl(cinfo, FALSE, tbl,
179 & entropy->derived_tbls[tbl]);
181 entropy->ac_derived_tbl = entropy->derived_tbls[tbl];
299 d_derived_tbl * tbl; local
324 tbl
370 d_derived_tbl * tbl; local
506 d_derived_tbl * tbl; local
[all...]
H A Djcphuff.c114 int ci, tbl; local
158 tbl = compptr->dc_tbl_no;
160 entropy->ac_tbl_no = tbl = compptr->ac_tbl_no;
165 if (tbl < 0 || tbl >= NUM_HUFF_TBLS)
166 ERREXIT1(cinfo, JERR_NO_HUFF_TABLE, tbl);
169 if (entropy->count_ptrs[tbl] == NULL)
170 entropy->count_ptrs[tbl] = (long *)
173 MEMZERO(entropy->count_ptrs[tbl], 257 * SIZEOF(long));
177 jpeg_make_c_derived_tbl(cinfo, is_DC_band, tbl,
290 c_derived_tbl * tbl = entropy->derived_tbls[tbl_no]; local
775 int ci, tbl; local
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DStyleContext.java772 Object[] tbl = new Object[2 * n];
776 tbl[i] = names.nextElement();
777 tbl[i+1] = attrs.getAttribute(tbl[i]);
780 attributes = tbl;
786 Object[] tbl = attributes;
787 for (int i = 0; i < tbl.length; i += 2) {
788 if (tbl[i] == StyleConstants.ResolveAttribute) {
789 resolveParent = (AttributeSet)tbl[i + 1];
799 Object[] tbl
[all...]
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DDatagramChannelImpl.c73 fd_set tbl; local
82 FD_ZERO(&tbl);
83 FD_SET((u_int)fd, &tbl);
85 if (select(/*ignored*/fd+1, &tbl, 0, 0, &t) <= 0) {
/openjdk7/jdk/src/windows/native/java/net/
H A Dnet_util_md.c540 fd_set tbl; local
544 FD_ZERO(&tbl);
545 FD_SET(fd, &tbl);
546 ret = select (fd + 1, &tbl, 0, 0, &t);
565 fd_set tbl; local
573 FD_ZERO(&tbl);
574 FD_SET(fd, &tbl);
575 FD_SET(fd1, &tbl);
576 ret = select (0, &tbl, 0, 0, tP);
581 if (FD_ISSET (fd, &tbl)) {
[all...]
H A DDualStackPlainDatagramSocketImpl.c42 fd_set tbl; local
51 FD_ZERO(&tbl);
52 FD_SET(fd, &tbl);
54 if (select(/*ignored*/fd+1, &tbl, 0, 0, &t) <= 0) {
H A DTwoStacksPlainDatagramSocketImpl.c332 fd_set tbl; local
348 FD_ZERO(&tbl);
349 FD_SET(fd, &tbl);
351 if (select(/*ignored*/fd+1, &tbl, 0, 0, &t) <= 0) {
/openjdk7/jdk/src/share/native/sun/awt/image/cvutils/
H A Dimg_colors.c534 clock_t start, mid, tbl, end; local
591 tbl = clock();
697 (double)(tbl - mid) / CLOCKS_PER_SEC);
699 (double)(end - tbl) / CLOCKS_PER_SEC);
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dawt_ImagingLib.c1273 unsigned char **tbl; local
1338 tbl = NULL;
1340 tbl = (unsigned char **)
1349 if (tbl == NULL || jtable == NULL) {
1350 if (tbl != NULL) free(tbl);
1372 free(tbl);
1383 free(tbl);
1391 free(tbl);
1414 tbl[
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolOop.cpp1581 SymbolHashMap* tbl,
1645 idx1 = tbl->symbol_to_value(sym);
1662 for (int j = 0; j < tbl->table_size() && idx1 == 0; j++) {
1663 for (SymbolHashMapEntry* cur = tbl->bucket(j); cur != NULL; cur = cur->next()) {
1675 idx1 = tbl->symbol_to_value(sym);
1685 idx1 = tbl->symbol_to_value(sym);
1580 copy_cpool_bytes(int cpool_size, SymbolHashMap* tbl, unsigned char *bytes) argument
H A DconstantPoolOop.hpp780 SymbolHashMap* tbl,
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/posix/elf/
H A DELFFileParser.java526 ELFStringTable tbl = getHeader().getSectionHeaderStringTable();
527 return tbl.get(name_ndx);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dinterp_masm_sparc.cpp100 AddressLiteral tbl(Interpreter::dispatch_table(state));
102 set(tbl, G3_scratch); // compute addr of table
304 AddressLiteral tbl(table);
306 set(tbl, G3_scratch); // compute addr of table
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dinterp_masm_x86_32.cpp464 ExternalAddress tbl((address)table);
465 ArrayAddress dispatch(tbl, index);
/openjdk7/jdk/make/tools/src/build/tools/generatecharacter/
H A DGenerateCharacter.java1550 * @param tbl the name of the final table to be accessed
1560 static String genAccess(String tbl, String var, int bits) { argument
1574 String tblname = (k == sizes.length - 1) ? tbl : tableName(k);
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp5013 fd_set tbl; local
5019 tbl.fd_count = 1;
5020 tbl.fd_array[0] = fd;
5022 return ::select(1, &tbl, 0, 0, &t);

Completed in 196 milliseconds