HomeSort by: relevance | last modified time | path
    Searched defs:tables (Results 1 - 13 of 13) sorted by relevancy

  /xsrc/external/mit/freetype/dist/src/sfnt/
sfwoff.c 100 WOFF_Table tables = NULL; local
194 /* tag value, the tables themselves are not. We thus have to */
197 if ( FT_NEW_ARRAY( tables, woff.num_tables ) ||
210 WOFF_Table table = tables + nn;
336 /* Write the tables. */
340 WOFF_Table table = tables + nn;
415 FT_FREE( tables );
sfwoff2.c 352 find_table( WOFF2_Table* tables,
361 if ( tables[i]->Tag == tag )
362 return tables[i];
1259 WOFF2_Table* tables,
1273 /* At this point of time those tables might not have been read yet. */
1274 const WOFF2_Table maxp_table = find_table( tables, num_tables,
1276 const WOFF2_Table head_table = find_table( tables, num_tables,
1543 FT_ERROR(( "One of `glyf'/`loca' tables missing.\n" ));
1570 /* Reconstruct/copy tables to output stream. */
1761 WOFF2_Table tables = NULL local
    [all...]
  /xsrc/external/mit/libX11/dist/src/xlibi18n/lcUniConv/
8bit_tab_to_h.c 140 struct { int minline; int maxline; } tables[16]; local
166 tables[tableno-1].maxline = i1;
170 tables[tableno-1].minline = tables[tableno-1].maxline = i1;
184 fprintf(f, "[%d] = {\n", 16*(tables[t].maxline-tables[t].minline+1));
185 for (i1 = tables[t].minline; i1 <= tables[t].maxline; i1++) {
241 if (tables[t].minline > 0)
242 fprintf(f, "-0x%02x", 16*tables[t].minline)
303 struct { int minline; int maxline; int usecount; const char* suffix; } tables[0x2000]; local
    [all...]
cjk_tab_to_h.c 292 struct { int minline; int maxline; int usecount; } tables[0x2000]; local
321 || ((tables[tableno-1].maxline >> 5) == (j1 >> 5)
322 && j1 - tables[tableno-1].maxline <= 8))) {
324 tables[tableno-1].maxline = j1;
328 tables[tableno-1].minline = tables[tableno-1].maxline = j1;
333 tables[t].usecount = 0;
334 j1 = 8*tables[t].minline;
335 j2 = 8*(tables[t].maxline+1);
338 tables[t].usecount++
    [all...]
  /xsrc/external/mit/bdftopcf/dist/
pcfwrite.c 216 PCFTableRec tables[32] = { { 0 } }, *table; local
271 table = tables;
362 ntables = table - tables;
366 for (cur_table = 0, table = tables;
372 pcfWriteTOC(file, tables, ntables);
373 for (cur_table = 0, table = tables;
  /xsrc/external/mit/libXfont/dist/src/bitmap/
pcfread.c 126 PCFTablePtr tables; local
140 tables = malloc(count * sizeof(PCFTableRec));
141 if (!tables) {
142 pcfError("pcfReadTOC(): Couldn't allocate tables (%d*%d)\n",
147 tables[i].type = pcfGetLSB32(file);
148 tables[i].format = pcfGetLSB32(file);
149 tables[i].size = pcfGetLSB32(file);
150 tables[i].offset = pcfGetLSB32(file);
155 return tables;
158 free(tables);
404 PCFTablePtr tables = 0; local
706 PCFTablePtr tables; local
    [all...]
pcfwrite.c 201 PCFTableRec tables[32], local
256 table = tables;
342 ntables = table - tables;
346 for (cur_table = 0, table = tables;
353 pcfWriteTOC(file, tables, ntables);
354 for (cur_table = 0, table = tables;
  /xsrc/external/mit/libXfont2/dist/src/bitmap/
pcfread.c 128 PCFTablePtr tables; local
142 tables = mallocarray(count, sizeof(PCFTableRec));
143 if (!tables) {
144 pcfError("pcfReadTOC(): Couldn't allocate tables (%d*%d)\n",
149 tables[i].type = pcfGetLSB32(file);
150 tables[i].format = pcfGetLSB32(file);
151 tables[i].size = pcfGetLSB32(file);
152 tables[i].offset = pcfGetLSB32(file);
157 return tables;
160 free(tables);
406 PCFTablePtr tables = 0; local
708 PCFTablePtr tables; local
    [all...]
pcfwrite.c 203 PCFTableRec tables[32], local
258 table = tables;
344 ntables = table - tables;
348 for (cur_table = 0, table = tables;
355 pcfWriteTOC(file, tables, ntables);
356 for (cur_table = 0, table = tables;
  /xsrc/external/mit/fonttosfnt/dist/
write.c 320 unsigned tables[15]; local
371 tables[i] = makeName("EBDT"); table_writers[i] = writeEBDT; i++;
372 tables[i] = makeName("EBLC"); table_writers[i] = writeEBLC; i++;
373 tables[i] = makeName("OS/2"); table_writers[i] = writeOS2; i++;
374 tables[i] = makeName("PCLT"); table_writers[i] = writePCLT; i++;
375 tables[i] = makeName("cmap"); table_writers[i] = writecmap; i++;
377 tables[i] = makeName("glyf");
380 tables[i] = makeName("head"); table_writers[i] = writehead; i++;
381 tables[i] = makeName("hhea"); table_writers[i] = writehhea; i++;
383 tables[i] = makeName("hmtx");
    [all...]
  /xsrc/external/mit/freetype/dist/src/pcf/
pcfread.c 99 PCF_Table tables; local
119 /* and there can be most 9 tables */
123 FT_TRACE0(( "pcf_read_TOC: adjusting number of tables"
130 if ( FT_NEW_ARRAY( face->toc.tables, toc->count ) )
133 tables = face->toc.tables;
136 if ( FT_STREAM_READ_FIELDS( pcf_table_header, tables ) )
138 tables++;
141 /* Sort tables and check for overlaps. Because they are almost */
144 tables = face->toc.tables
    [all...]
pcf.h 52 PCF_Table tables; member in struct:PCF_TocRec_
  /xsrc/external/mit/MesaLib/dist/src/amd/vulkan/
radv_cmd_buffer.c 7178 const VkStridedDeviceAddressRegionKHR *tables)
7191 desc_ptr[0] = tables[i].deviceAddress;
7192 desc_ptr[1] = tables[i].deviceAddress >> 32;
7193 desc_ptr[2] = tables[i].stride;
7225 const VkStridedDeviceAddressRegionKHR tables[] = { local
7232 if (!radv_rt_bind_tables(cmd_buffer, tables)) {

Completed in 20 milliseconds