Searched refs:origin (Results 1 - 25 of 1627) sorted by last modified time

1234567891011>>

/external/zlib/src/contrib/dotzlib/DotZLib/
H A DGZipStream.cs252 /// <param name="origin"></param>
255 public override long Seek(long offset, SeekOrigin origin) argument
/external/zlib/src/contrib/masmx64/
H A Dgvmat64.asm24 ; 1. The origin of this software must not be misrepresented; you must not
/external/zlib/src/contrib/masmx86/
H A Dmatch686.asm176 ;; 1. The origin of this software must not be misrepresented; you must not
/external/zlib/src/contrib/minizip/
H A Dioapi.c21 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
25 #define FSEEKO_FUNC(stream, offset, origin) fseeko64(stream, offset, origin)
41 long call_zseek64 (const zlib_filefunc64_32_def* pfilefunc,voidpf filestream, ZPOS64_T offset, int origin) argument
44 return (*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset,origin);
51 return (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,origin);
91 static long ZCALLBACK fseek64_file_func OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin));
161 static long ZCALLBACK fseek_file_func (voidpf opaque, voidpf stream, uLong offset, int origin) argument
165 switch (origin)
184 fseek64_file_func(voidpf opaque, voidpf stream, ZPOS64_T offset, int origin) argument
[all...]
H A Dioapi.h142 typedef long (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int origin));
159 typedef long (ZCALLBACK *seek64_file_func) OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin));
195 long call_zseek64 OF((const zlib_filefunc64_32_def* pfilefunc,voidpf filestream, ZPOS64_T offset, int origin));
H A Diowin32.c39 long ZCALLBACK win32_seek64_file_func OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin));
308 long ZCALLBACK win32_seek_file_func (voidpf opaque,voidpf stream,uLong offset,int origin) argument
316 switch (origin)
346 long ZCALLBACK win32_seek64_file_func (voidpf opaque, voidpf stream,ZPOS64_T offset,int origin) argument
355 switch (origin)
H A Dminiunz.c34 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
38 #define FSEEKO_FUNC(stream, offset, origin) fseeko64(stream, offset, origin)
H A Dminizip.c35 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
39 #define FSEEKO_FUNC(stream, offset, origin) fseeko64(stream, offset, origin)
/external/valgrind/main/memcheck/
H A Dmc_main.c77 /* Change this to 1 to enable assertions on origin tracking cache fast
83 /*--- Comments on the origin tracking implementation ---*/
1858 MC_(helperc_b_store1)( a+i, 0 ); /* clear the origin tag */
1875 MC_(helperc_b_store1)( a+i, 0 ); /* clear the origin tag */
1972 Note that this implementation draws inspiration from the "origin
1983 values using so called "origin tags", which are 32-bit integers,
1993 directly as an origin tag (otag), but in fact we want to put
1998 * Both ECUs and origin tags are represented as 32-bit words
2001 They have no knowledge of origin tags - that is a purely
2013 used by the implementation to indicate "no origin", whic
[all...]
H A Dmc_translate.c150 and origin (shadowB) values, or these may be IRTemp_INVALID if code
1149 IRAtom* origin; local
1179 /* Get the origin info for the value we are about to check. At
1180 least, if we are doing origin tracking. If not, use a dummy
1181 zero origin. */
1183 origin = schemeE( mce, atom );
1185 origin = assignNew( 'B', mce, Ity_I64, unop(Iop_32Uto64, origin) );
1188 origin = NULL;
1198 if (origin) {
[all...]
/external/tcpdump/
H A Dprint-dvmrp.c172 register u_int32_t mask, origin; local
203 origin = 0;
206 origin = origin << 8 | *bp++;
209 origin <<= 8;
215 printf("\n\t %s metric %d", intoa(htonl(origin)),
/external/srec/portable/include/
H A DPANSIFileImpl.h87 PORTABLE_API ESR_ReturnCode PANSIFileSeekImpl(PFile* self, long offset, int origin);
H A DPFile.h136 * @param offset Number of bytes from <code>origin</code>
137 * @param origin Initial position
140 ESR_ReturnCode(*seek)(struct PFile_t* self, long offset, int origin);
310 * @param offset Number of bytes from <code>origin</code>
311 * @param origin Initial position
314 PORTABLE_API ESR_ReturnCode PFileSeek(PFile* self, long offset, int origin);
490 * @param origin See fseek()
493 PORTABLE_API int pfseek(PFile* stream, long offset, int origin);
H A Dpstream.h76 PORTABLE_API int PortFseek(PORT_FILE PortFile, long offset, int origin);
/external/srec/portable/src/
H A DPANSIFileImpl.c271 ESR_ReturnCode PANSIFileSeekImpl(PFile* self, long offset, int origin) argument
277 if (fseek(impl->value, offset, origin) != 0)
H A DPFile.c88 ESR_ReturnCode PFileSeek(PFile* self, long offset, int origin) argument
95 return self->seek(self, offset, origin);
394 int pfseek(PFile* stream, long offset, int origin) argument
398 rc = PFileSeek(stream, offset, origin);
H A DPFileWrap.c114 ESR_ReturnCode PFileSeek ( PFile *self, long offset, int origin )
119 seek_ok = fseek ( (FILE *)self, offset, origin );
334 int pfseek ( PFile *stream, long offset, int origin )
338 rc = PFileSeek ( stream, offset, origin );
H A Dpstream.c510 int PortFseek(PORT_FILE PortFile, long offset, int origin) argument
521 switch (origin)
534 retval = 0; /* Error, unknown origin type */
/external/srec/srec/include/
H A Dsample.h213 int seek_wavfile_data(wave_info* wave, long offset, int origin);
/external/skia/src/animator/
H A DSkDraw3D.cpp78 SK_MEMBER_ALIAS(origin, fPatch.fOrigin, 3D_Point),
/external/skia/src/core/
H A DSkBitmap.cpp857 SkIPoint origin = fPixelRefOrigin; local
858 origin.fX += r.fLeft;
859 origin.fY += r.fTop;
861 dst.setPixelRef(fPixelRef, origin);
1318 SkIPoint origin; local
1319 origin.fX = buffer.readInt();
1320 origin.fY = buffer.readInt();
1321 size_t offset = origin.fY * rowBytes + origin.fX * info.bytesPerPixel();
1325 origin
[all...]
H A DSkCanvas.cpp994 const SkIPoint& origin = layer->fDevice->getOrigin(); local
995 this->internalDrawDevice(layer->fDevice, origin.x(), origin.y(),
1054 void* SkCanvas::accessTopLayerPixels(SkImageInfo* info, size_t* rowBytes, SkIPoint* origin) { argument
1056 if (pixels && origin) {
1057 *origin = this->getTopDevice(false)->getOrigin();
H A DSkMatrix.cpp1049 SkPoint origin; local
1052 proc(*this, 0, 0, &origin);
1058 dst[i].set(tmp.fX - origin.fX, tmp.fY - origin.fY);
H A DSkScaledImageCache.cpp355 SkIPoint origin = bm.pixelRefOrigin(); local
356 return SkIRect::MakeXYWH(origin.fX, origin.fY, bm.width(), bm.height());
H A DSkWriteBuffer.cpp147 const SkIPoint& origin) {
150 buffer->write32(origin.fX);
151 buffer->write32(origin.fY);
146 write_encoded_bitmap(SkWriteBuffer* buffer, SkData* data, const SkIPoint& origin) argument

Completed in 6493 milliseconds

1234567891011>>