Home
last modified time | relevance | path

Searched refs:occ (Results 1 – 16 of 16) sorted by relevance

/external/pdfium/third_party/libtiff/
Dtif_lzw.c368 long occ = (long) occ0; in LZWDecode() local
384 if ((tmsize_t) occ != occ0) in LZWDecode()
394 if (residue > occ) { in LZWDecode()
401 sp->dec_restart += occ; in LZWDecode()
404 } while (--residue > occ && codep); in LZWDecode()
406 tp = op + occ; in LZWDecode()
410 } while (--occ && codep); in LZWDecode()
418 occ -= residue; in LZWDecode()
442 while (occ > 0) { in LZWDecode()
465 occ--; in LZWDecode()
[all …]
Dtif_packbits.c214 PackBitsDecode(TIFF* tif, uint8* op, tmsize_t occ, uint16 s) in PackBitsDecode() argument
225 while (cc > 0 && occ > 0) { in PackBitsDecode()
238 if( occ < (tmsize_t)n ) in PackBitsDecode()
242 (unsigned long) ((tmsize_t)n - occ)); in PackBitsDecode()
243 n = (long)occ; in PackBitsDecode()
251 occ -= n; in PackBitsDecode()
257 if (occ < (tmsize_t)(n + 1)) in PackBitsDecode()
261 (unsigned long) ((tmsize_t)n - occ + 1)); in PackBitsDecode()
262 n = (long)occ - 1; in PackBitsDecode()
271 op += n; occ -= n; in PackBitsDecode()
[all …]
Dtif_luv.c183 LogL16Decode(TIFF* tif, uint8* op, tmsize_t occ, uint16 s) in LogL16Decode() argument
199 npixels = occ / sp->pixel_size; in LogL16Decode()
259 LogLuvDecode24(TIFF* tif, uint8* op, tmsize_t occ, uint16 s) in LogLuvDecode24() argument
272 npixels = occ / sp->pixel_size; in LogLuvDecode24()
316 LogLuvDecode32(TIFF* tif, uint8* op, tmsize_t occ, uint16 s) in LogLuvDecode32() argument
333 npixels = occ / sp->pixel_size; in LogLuvDecode32()
446 tmsize_t occ; in LogL16Encode() local
467 occ = tif->tif_rawdatasize - tif->tif_rawcc; in LogL16Encode()
470 if (occ < 4) { in LogL16Encode()
472 tif->tif_rawcc = tif->tif_rawdatasize - occ; in LogL16Encode()
[all …]
Dtif_next.c47 NeXTDecode(TIFF* tif, uint8* buf, tmsize_t occ, uint16 s) in NeXTDecode() argument
61 for (op = (unsigned char*) buf, cc = occ; cc-- > 0;) in NeXTDecode()
67 if (occ % scanline) in NeXTDecode()
72 for (row = buf; cc > 0 && occ > 0; occ -= scanline, row += scanline) { in NeXTDecode()
Dtif_zip.c85 static int ZIPDecode(TIFF* tif, uint8* op, tmsize_t occ, uint16 s);
145 ZIPDecode(TIFF* tif, uint8* op, tmsize_t occ, uint16 s) in ZIPDecode() argument
164 uInt avail_out_before = (uint64)occ < 0xFFFFFFFFU ? (uInt) occ : 0xFFFFFFFFU; in ZIPDecode()
169 occ -= (avail_out_before - sp->stream.avail_out); in ZIPDecode()
183 } while (occ > 0); in ZIPDecode()
184 if (occ != 0) { in ZIPDecode()
187 (unsigned long) tif->tif_row, (TIFF_UINT64_T) occ); in ZIPDecode()
Dtif_thunder.c167 ThunderDecodeRow(TIFF* tif, uint8* buf, tmsize_t occ, uint16 s) in ThunderDecodeRow() argument
173 if (occ % tif->tif_scanlinesize) in ThunderDecodeRow()
178 while (occ > 0) { in ThunderDecodeRow()
181 occ -= tif->tif_scanlinesize; in ThunderDecodeRow()
Dtif_fax3.c225 Fax3Decode1D(TIFF* tif, uint8* buf, tmsize_t occ, uint16 s) in Fax3Decode1D() argument
229 if (occ % sp->b.rowbytes) in Fax3Decode1D()
236 while (occ > 0) { in Fax3Decode1D()
249 occ -= sp->b.rowbytes; in Fax3Decode1D()
268 Fax3Decode2D(TIFF* tif, uint8* buf, tmsize_t occ, uint16 s) in Fax3Decode2D() argument
273 if (occ % sp->b.rowbytes) in Fax3Decode2D()
279 while (occ > 0) { in Fax3Decode2D()
306 occ -= sp->b.rowbytes; in Fax3Decode2D()
1432 Fax4Decode(TIFF* tif, uint8* buf, tmsize_t occ, uint16 s) in Fax4Decode() argument
1436 if (occ % sp->b.rowbytes) in Fax4Decode()
[all …]
Dtif_pixarlog.c598 static int PixarLogDecode(TIFF* tif, uint8* op, tmsize_t occ, uint16 s);
752 PixarLogDecode(TIFF* tif, uint8* op, tmsize_t occ, uint16 s) in PixarLogDecode() argument
764 nsamples = occ / sizeof(float); /* XXX float == 32 bits */ in PixarLogDecode()
769 nsamples = occ / sizeof(uint16); /* XXX uint16 == 16 bits */ in PixarLogDecode()
773 nsamples = occ; in PixarLogDecode()
/external/u-boot/drivers/soc/ti/
Dk3-navss-ringacc.c60 u32 occ; /* RT Ring N Occupancy Register */ member
158 u32 occ; member
334 ring->occ = 0; in k3_nav_ringacc_ring_reset()
364 void k3_nav_ringacc_ring_reset_dma(struct k3_nav_ring *ring, u32 occ) in k3_nav_ringacc_ring_reset_dma() argument
374 if (!occ) in k3_nav_ringacc_ring_reset_dma()
375 occ = ringacc_readl(&ring->rt->occ); in k3_nav_ringacc_ring_reset_dma()
377 if (occ) { in k3_nav_ringacc_ring_reset_dma()
381 ring->ring_id, occ); in k3_nav_ringacc_ring_reset_dma()
397 db_ring_cnt = (1U << 22) - occ; in k3_nav_ringacc_ring_reset_dma()
542 ring->occ = 0; in k3_nav_ringacc_ring_cfg()
[all …]
/external/linux-kselftest/tools/testing/selftests/drivers/net/netdevsim/
Ddevlink.sh237 local occ=$(res_val_get testns1 IPv4 fib occ)
238 local limit=$((occ+1))
/external/u-boot/include/linux/soc/ti/
Dk3-navss-ringacc.h125 void k3_nav_ringacc_ring_reset_dma(struct k3_nav_ring *ring, u32 occ);
/external/tensorflow/tensorflow/core/grappler/optimizers/
Dscoped_allocator_optimizer.cc1062 GraphOpOccurrences occ; in ProcessGraphDef() local
1063 FindOpOccurrences(graph, op_name_set_, &occ); in ProcessGraphDef()
1064 if (!occ.empty()) { in ProcessGraphDef()
1070 for (auto& dt : occ) { in ProcessGraphDef()
/external/deqp/external/openglcts/modules/common/
DglcPackedDepthStencilTests.cpp1812 GLuint occ; in iterate() local
1813 gl.genQueries(1, &occ); in iterate()
1885 gl.beginQuery(GL_ANY_SAMPLES_PASSED, occ); in iterate()
1898 gl.getQueryObjectuiv(occ, GL_QUERY_RESULT, &n); in iterate()
1920 gl.deleteQueries(1, &occ); in iterate()
/external/mesa3d/src/gallium/drivers/svga/include/
Dsvga3d_types.h1727 SVGADXOcclusionQueryResult occ; member
/external/cldr/tools/java/org/unicode/cldr/util/data/
Diso-639-3_Retirements.tab21 occ Occidental D ile 2007-07-18
/external/honggfuzz/examples/apache-httpd/corpus_http1/
D67154715f57204df236d04030732b84d.000eb1d3.honggfuzz.cov6800 2���!o������ `" ~in�=M*οrR.���-<��#o�F��*[s8 ��$8O�Ym�����ZU(3�^3�occ�� �,!��֦��r+…