Searched refs:vecsize (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dblock_splitter.cc158 int vecsize = vec.size(); local
159 double* insert_cost = new double[kSize * vecsize];
160 memset(insert_cost, 0, sizeof(insert_cost[0]) * kSize * vecsize);
162 for (int j = 0; j < vecsize; ++j) {
163 insert_cost[i * vecsize + j] =
167 double *cost = new double[vecsize];
168 memset(cost, 0, sizeof(cost[0]) * vecsize);
169 bool* switch_signal = new bool[length * vecsize];
170 memset(switch_signal, 0, sizeof(switch_signal[0]) * length * vecsize);
178 int ix = byte_ix * vecsize;
[all...]
/external/svox/pico/lib/
H A Dpicokpdf.c59 - And then numframes x vecsize uint8
63 - vecsize: 1 uint8
74 And then numframes x vecsize uint8
108 pdfdur->vecsize = this->base[pos++];
117 PICODBG_DEBUG(("numframes %d, vecsize %d, phonquantlen %d, "
118 "statequantlen %d", pdfdur->numframes, pdfdur->vecsize,
120 if ((picoos_uint32)(pos + (pdfdur->numframes * pdfdur->vecsize)) != this->size) {
122 pos + (pdfdur->numframes * pdfdur->vecsize),
162 pdfmul->vecsize = this->base[pos++];
216 if ((pdfmul->numdeltas == 0xFF) && (pdfmul->vecsize !
[all...]
H A Dpicokpdf.h101 picoos_uint8 vecsize; member in struct:picokpdf_pdfdur
113 picoos_uint8 vecsize; member in struct:picokpdf_pdfmul
H A Dpicocep.c969 picoos_uint8 vecsize = pdf->vecsize; local
1014 vecstart = indices[b + i] * vecsize;
1025 vecstart = indices[b + Id[j]] * vecsize;
1039 vecstart = indices[b + Idd[j]] * vecsize;
1060 vecstart = indices[b + i + 1] * vecsize;
1080 vecstart = indices[b + i] * vecsize;
1101 vecstart = indices[b + i + 1] * vecsize;
1313 picoos_uint8 vecsize = pdf->vecsize; local
1349 picoos_uint8 vecsize = pdf->vecsize; local
[all...]
H A Dpicopam.c1401 durItem = &(pdf->content[durIndex * pdf->vecsize]);
1463 lf0IndexOffset *= pam->pdflfz->vecsize;
/external/chromium_org/third_party/re2/util/
H A Dpcre.cc467 int vecsize) const {
507 vecsize);
515 rc = vecsize / 2;
550 << ", vecsize=" << vecsize; local
564 int vecsize) const {
565 assert((1 + n) * 3 <= vecsize); // results + PCRE workspace
566 int matches = TryMatch(text, 0, anchor, true, vec, vecsize);
603 size_t const vecsize = (1 + n) * 3; // results + PCRE workspace local
605 int *vec = new int[vecsize];
[all...]
H A Dpcre.h472 // Match against "text", filling in "vec" (up to "vecsize" * 2/3) with
488 int vecsize) const;
505 int vecsize) const;
/external/pcre/dist/
H A Dpcrecpp.cc507 int vecsize) const {
540 vecsize);
554 rc = vecsize / 2;
566 int vecsize) const {
567 assert((1 + n) * 3 <= vecsize); // results + PCRE workspace
568 int matches = TryMatch(text, 0, anchor, true, vec, vecsize);
606 size_t const vecsize = (1 + n) * 3; // results + PCRE workspace local
608 int space[21]; // use stack allocation for small vecsize (common case)
609 int* vec = vecsize <= 21 ? space : new int[vecsize];
[all...]
H A Dpcrecpp.h663 // Match against "text", filling in "vec" (up to "vecsize" * 2/3) with
679 int vecsize) const;
696 int vecsize) const;
/external/regex-re2/util/
H A Dpcre.cc462 int vecsize) const {
502 vecsize);
510 rc = vecsize / 2;
545 << ", vecsize=" << vecsize; local
559 int vecsize) const {
560 assert((1 + n) * 3 <= vecsize); // results + PCRE workspace
561 int matches = TryMatch(text, 0, anchor, true, vec, vecsize);
598 size_t const vecsize = (1 + n) * 3; // results + PCRE workspace local
600 int *vec = new int[vecsize];
[all...]
H A Dpcre.h466 // Match against "text", filling in "vec" (up to "vecsize" * 2/3) with
482 int vecsize) const;
499 int vecsize) const;

Completed in 296 milliseconds