Home
last modified time | relevance | path

Searched refs:iA (Results 1 – 25 of 38) sorted by relevance

12

/third_party/cups-filters/fontembed/
Dsfnt_subset.c15 int iA; in otf_ttc_extract() local
25 for (iA=0;iA<otf->numTables;iA++) { in otf_ttc_extract()
26 otw[iA].tag=otf->tables[iA].tag; in otf_ttc_extract()
27 otw[iA].action=otf_action_copy; in otf_ttc_extract()
28 otw[iA].param=otf; in otf_ttc_extract()
29 otw[iA].length=iA; in otf_ttc_extract()
31 iA=otf_write_sfnt(otw,otf->version,otf->numTables,output,context); in otf_ttc_extract()
34 return iA; in otf_ttc_extract()
41 int iA,iB,numTables=0; in otf_intersect_tables() local
42 for (iA=0,iB=0;(iA<otf->numTables)&&(otw[iB].tag);) { in otf_intersect_tables()
[all …]
Dembed_sfnt.c50 int iA,iB=0; in emb_otf_get_fontname() local
51 for (iA=0;(iA<63)&&(iA*2<len);iA++) { in emb_otf_get_fontname()
52 if ( (fname[2*iA]==0)&& in emb_otf_get_fontname()
53 (fname[2*iA+1]>=33)&&(fname[2*iA+1]<=126)&& in emb_otf_get_fontname()
54 (!strchr("[](){}<>/%",fname[iA*2+1])) ) { in emb_otf_get_fontname()
55 fontname[iB++]=fname[iA*2+1]; in emb_otf_get_fontname()
60 int iA,iB=0; in emb_otf_get_fontname() local
61 for (iA=0;(iA<63)&&(iA<len);iA++) { in emb_otf_get_fontname()
62 if ( (fname[iA]>=33)&&(fname[iA]<=126)&& in emb_otf_get_fontname()
63 (!strchr("[](){}<>/%",fname[iA])) ) { in emb_otf_get_fontname()
[all …]
Dsfnt.c26 int iA,iB; in otf_bsearch_params() local
27 for (iA=1,iB=0;iA<=num;iA<<=1,iB++) {} in otf_bsearch_params()
29 *searchRange=iA*recordSize/2; in otf_bsearch_params()
147 int iA; in otf_do_load() local
182 for (iA=0;iA<otf->numTables;iA++) { in otf_do_load()
187 otf->tables[iA].tag=get_ULONG(buf); in otf_do_load()
188 otf->tables[iA].checkSum=get_ULONG(buf+4); in otf_do_load()
189 otf->tables[iA].offset=get_ULONG(buf+8); in otf_do_load()
190 otf->tables[iA].length=get_ULONG(buf+12); in otf_do_load()
191 if ( (otf->tables[iA].tag==OTF_TAG('C','F','F',' '))&& in otf_do_load()
[all …]
Dtest_analyze.c55 int iA,len=0; in show_name() local
67 for (iA=0;iA<name_count;iA++) { in show_name()
68 const char *nrec=buf+6+12*iA; in show_name()
101 int iA,len=0; in show_cmap() local
113 for (iA=0;iA<numTables;iA++) { in show_cmap()
114 const char *nrec=cmap+4+8*iA; in show_cmap()
139 int iA; in show_glyf() local
144 for (iA=0;iA<otf->numGlyphs;iA++) { in show_glyf()
145 int len=otf_get_glyph(otf,iA); in show_glyf()
166 int iA; in show_hmtx() local
[all …]
Dembed_pdf.c48 int iA,iB; in emb_pdf_escape_name() local
51 for (iA=0,iB=0;iA<len;iA++,iB++) { in emb_pdf_escape_name()
52 if ( ((unsigned char)name[iA]<33)||((unsigned char)name[iA]>126)|| in emb_pdf_escape_name()
53 (strchr("#()<>[]{}/%",name[iA])) ) { in emb_pdf_escape_name()
55 buf[++iB]=hex[(name[iA]>>4)&0x0f]; in emb_pdf_escape_name()
56 buf[++iB]=hex[name[iA]&0xf]; in emb_pdf_escape_name()
58 buf[iB]=name[iA]; in emb_pdf_escape_name()
165 int iA; in emb_pdf_fontdescr() local
166 for (iA=0;iA<6;iA++) { in emb_pdf_fontdescr()
168 subtag[iA]='A'+x; in emb_pdf_fontdescr()
[all …]
Dfrequent.c25 int iA; in frequent_new() local
26 for (iA=0;iA<size;iA++) { in frequent_new()
27 ret->pair[iA].key=INTPTR_MIN; in frequent_new()
28 ret->pair[iA].count=0; in frequent_new()
29 ret->pair[iA].zero=0; in frequent_new()
39 int iA,zero=-1; in frequent_add() local
40 for (iA=freq->size-1;iA>=0;iA--) { in frequent_add()
41 if (freq->pair[iA].key==key) { in frequent_add()
42 freq->pair[iA].count++; in frequent_add()
45 } else if (freq->pair[iA].count==freq->czero) { in frequent_add()
[all …]
Dtest_ps.c25 int iA; in write_string() local
29 for (iA=0;str[iA];iA++) { in write_string()
30 const unsigned short gid=emb_get(emb,(unsigned char)str[iA]); in write_string()
36 for (iA=0;str[iA];iA++) { in write_string()
37 emb_get(emb,(unsigned char)str[iA]); in write_string()
74 int iA; in main() local
75 for (iA=0;str[iA];iA++) { in main()
76 emb_get(emb,(unsigned char)str[iA]); in main()
Dtest_pdf.c52 int iA; in write_string() local
56 for (iA=0;str[iA];iA++) { in write_string()
57 const unsigned short gid=emb_get(emb,(unsigned char)str[iA]); in write_string()
63 for (iA=0;str[iA];iA++) { in write_string()
64 emb_get(emb,(unsigned char)str[iA]); in write_string()
168 int iA; in main() local
203 for (iA=0;iA<xrefpos;iA++) { in main()
204 fprintf(f,"%010d 00000 n \n",xref[iA]); in main()
Dembed.c15 int iA,ret=0; in copy_file() local
20 iA=fread(buf,1,4096,f); in copy_file()
21 (*output)(buf,iA,context); in copy_file()
22 ret+=iA; in copy_file()
23 } while (iA>0); in copy_file()
/third_party/cups-filters/filter/
Dpdfutils.c41 int iA=0; in pdfOut_putString() local
42 for (;len>0;iA++,len--) { in pdfOut_putString()
43 if ( (str[iA]<32)||(str[iA]>126) ) { in pdfOut_putString()
44 fwrite(str,1,iA,stdout); in pdfOut_putString()
45 fprintf(stdout,"\\%03o",(unsigned char)str[iA]); in pdfOut_putString()
46 pdf->filepos+=iA+4; in pdfOut_putString()
47 str+=iA+1; in pdfOut_putString()
48 iA=-1; in pdfOut_putString()
49 } else if ( (str[iA]=='(')||(str[iA]==')')||(str[iA]=='\\') ) { in pdfOut_putString()
50 fwrite(str,1,iA,stdout); in pdfOut_putString()
[all …]
Dtest_pdf2.c13 int iA; in write_string() local
17 for (iA=0;str[iA];iA++) { in write_string()
18 const unsigned short gid=emb_get(emb,(unsigned char)str[iA]); in write_string()
22 pdf->filepos+=4*iA+2; in write_string()
24 for (iA=0;str[iA];iA++) { in write_string()
25 emb_get(emb,(unsigned char)str[iA]); in write_string()
/third_party/skia/src/pathops/
DSkDLineIntersection.cpp86 for (int iA = 0; iA < 2; ++iA) { in intersect() local
87 if ((t = b.exactPoint(a[iA])) >= 0) { in intersect()
88 insert(iA, t, a[iA]); in intersect()
148 for (int iA = 0; iA < 2; ++iA) { in intersect() local
149 if (!aNotB[iA]) { in intersect()
152 int nearer = aNearB[iA] > 0.5; in intersect()
156 SkASSERT(a[iA] != b[nearer]); in intersect()
157 SkOPASSERT(iA == (bNearA[nearer] > 0.5)); in intersect()
158 insertNear(iA, nearer, a[iA], b[nearer]); in intersect()
159 aNearB[iA] = -1; in intersect()
[all …]
/third_party/openh264/codec/encoder/core/src/
Dsvc_set_mb_syn_cavlc.cpp316 int8_t iA, iB, iC; in WelsWriteMbResidual() local
320 iA = pNonZeroCoeffCount[8]; in WelsWriteMbResidual()
322 WELS_NON_ZERO_COUNT_AVERAGE (iC, iA, iB); in WelsWriteMbResidual()
332 iA = pNonZeroCoeffCount[iIdx - 1]; in WelsWriteMbResidual()
334 WELS_NON_ZERO_COUNT_AVERAGE (iC, iA, iB); in WelsWriteMbResidual()
352 iA = pNonZeroCoeffCount[iIdx - 1]; in WelsWriteMbResidual()
354 WELS_NON_ZERO_COUNT_AVERAGE (iC, iA, iB); in WelsWriteMbResidual()
358 iA = kiA; in WelsWriteMbResidual()
360 WELS_NON_ZERO_COUNT_AVERAGE (iC, iA, iB); in WelsWriteMbResidual()
364 iA = pNonZeroCoeffCount[iIdx + 7]; in WelsWriteMbResidual()
[all …]
/third_party/cups-filters/filter/pdftopdf/
Dqpdf_pdftopdf_processor.cc548 for (int iA=0;iA<len;iA++) { in start() local
549 pdf->removePage(orig_pages[iA]); in start()
580 for (int iA=0;iA<len;iA++) { in get_pages() local
581 …push_back(std::shared_ptr<PDFTOPDF_PageHandle>(new QPDF_PDFTOPDF_PageHandle(orig_pages[iA],iA+1))); in get_pages()
627 for (int iA=1;iA<copies;iA++) { in multiply() local
634 for (int iA=1;iA<copies;iA++) { in multiply() local
648 for (int iA=0;iA<len;iA++) { in autoRotateAll() local
649 QPDFObjectHandle page=orig_pages[iA]; in autoRotateAll()
695 for (int iA=0;iA<len;iA++) { in setComments() local
696 assert(comments[iA].at(0)=='%'); in setComments()
[all …]
Dintervalset.cc112 for (int iA=0;iA<len;iA++) { in dump() local
113 fprintf(stderr,"[%d,%d),",data[iA].first,data[iA].second); in dump()
Dqpdf_xobject.cc32 for (int iA=0;iA<clen;iA++) { in provideStreamData() local
33 contents[iA].pipeStreamData(&concat, true, false, false); in provideStreamData()
Dqpdf_pdftopdf.cc92 for (int iA=0;iA<6;iA++) { in Matrix() local
93 ctm[iA]=ar.getArrayItem(iA).getNumericValue(); in Matrix()
Dpdftopdf_processor.cc322 for (int iA=0;iA<numPages;iA++) { in processPDFTOPDF() local
324 if (shuffle[iA] >= numOrigPages) in processPDFTOPDF()
328 page=pages[shuffle[iA]]; in processPDFTOPDF()
351 if (shuffle[iA]>=numOrigPages) { in processPDFTOPDF()
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/types/type_relationships/recursive_types/
Drecursive_types.ts26 interface iA { interface
27 next: iA;
43 var t1: IsEqual<iA, iB> = true;
/third_party/openh264/codec/common/loongarch/
Dmc_chroma_lsx.c95 int8_t iA, iB, iC, iD; in McChromaWidthEq4_lsx() local
104 iA = pABCD[0]; in McChromaWidthEq4_lsx()
109 iFillData = (iB << 8) | iA; in McChromaWidthEq4_lsx()
145 int8_t iA, iB, iC, iD; in McChromaWidthEq8_lsx() local
154 iA = pABCD[0]; in McChromaWidthEq8_lsx()
159 iFillData = (iB << 8) | iA; in McChromaWidthEq8_lsx()
/third_party/vk-gl-cts/external/vulkan-docs/src/katex/contrib/
Dmhchem.js296 for (var iA = 0; iA < task.action_.length; iA++) {
301 if (machine.actions[task.action_[iA].type_]) {
302 … o = machine.actions[task.action_[iA].type_](buffer, matches.match_, task.action_[iA].option);
303 } else if (mhchemParser.actions[task.action_[iA].type_]) {
304 … o = mhchemParser.actions[task.action_[iA].type_](buffer, matches.match_, task.action_[iA].option);
306 …throw ["MhchemBugA", "mhchem bug A. Please report. (" + task.action_[iA].type_ + ")"]; // Trying t…
Dmhchem.mjs186 for (var iA = 0; iA < task.action_.length; iA++) {
191 if (machine.actions[task.action_[iA].type_]) {
192 … o = machine.actions[task.action_[iA].type_](buffer, matches.match_, task.action_[iA].option);
193 } else if (mhchemParser.actions[task.action_[iA].type_]) {
194 … o = mhchemParser.actions[task.action_[iA].type_](buffer, matches.match_, task.action_[iA].option);
196 …throw ["MhchemBugA", "mhchem bug A. Please report. (" + task.action_[iA].type_ + ")"]; // Trying t…
/third_party/openh264/test/encoder/
DEncUT_GetIntraPredictor.cpp467 int32_t iA = 0, iB = 0, iC = 0, iH = 0, iV = 0; in TEST() local
477 iA = (pLeft[15 * kiStride] + pTop[15]) << 4; in TEST()
484 EXPECT_EQ (pPred[j], (uint8_t)WelsClip1 ((iA + iB * (j - 7) + iC * (i - 7) + 16) >> 5)); in TEST()
/third_party/icu/icu4c/source/test/testdata/
Dcasing.txt42 …{ "ʻaMeLikA huI Pū ʻʻʻiA", "ʻAmelika Hui Pū ʻʻʻIa", "", "-1", "" }, // titlecase first _cased_ let…
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/
DEXT_texture_integer.txt203 ALPHA_INTEGER_EXT iA Color
205 RGBA_INTEGER_EXT iR, iG, iB, iA Color
207 BGRA_INTEGER_EXT iB, iG, iR, iA Color
209 LUMINANCE_ALPHA_INTEGER_EXT iLuminance, iA Color

12