• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/libiconv-1.11/tools/

Lines Matching defs:tables

175       struct { int minline; int maxline; } tables[16];
201 tables[tableno-1].maxline = i1;
205 tables[tableno-1].minline = tables[tableno-1].maxline = i1;
219 fprintf(f, "[%d] = {\n", 16*(tables[t].maxline-tables[t].minline+1));
220 for (i1 = tables[t].minline; i1 <= tables[t].maxline; i1++) {
276 if (tables[t].minline > 0)
277 fprintf(f, "-0x%02x", 16*tables[t].minline);
319 if (tables[t].minline > 0)
320 fprintf(f, "-0x%02x", 16*tables[t].minline);
338 struct { int minline; int maxline; int usecount; const char* suffix; } tables[0x2000];
376 || ((tables[tableno-1].maxline >> 5) == (j1 >> 5)
377 && j1 - tables[tableno-1].maxline <= 8))) {
379 tables[tableno-1].maxline = j1;
383 tables[tableno-1].minline = tables[tableno-1].maxline = j1;
388 tables[t].usecount = 0;
389 j1 = 8*tables[t].minline;
390 j2 = 8*(tables[t].maxline+1);
393 tables[t].usecount++;
396 if (tables[t].usecount > 1) {
398 if (p == tables[t].minline >> 5) {
402 p = tables[t].minline >> 5;
406 tables[t].suffix = s;
408 tables[t].suffix = NULL;
413 if (tables[t].usecount > 1) {
415 fprintf(f, "static const unsigned char %s_page%s[%d] = {\n", c_charsetname, tables[t].suffix, 8*(tables[t].maxline-tables[t].minline+1));
416 for (j1 = tables[t].minline; j1 <= tables[t].maxline; j1++) {
417 if ((j1 % 0x20) == 0 && j1 > tables[t].minline)
436 j2 = tables[t].maxline+1;
450 if (j1 != tables[t].minline) abort();
451 if (j2 > tables[t].maxline+1) abort();
452 j2 = tables[t].maxline+1;
460 if (t >= 0 && tables[t].usecount == 0) abort();
461 if (t >= 0 && tables[t].usecount == 1) {
481 fprintf(f, "\n c = %s_page%s[wc", c_charsetname, tables[t].suffix);
482 if (tables[t].minline > 0)