Searched refs:origin (Results 1 - 25 of 91) sorted by relevance

1234

/haiku-buildtools/gcc/gcc/ada/
H A Dcstreams.c275 __gnat_fseek64 (FILE *stream, __int64 offset, int origin) argument
277 return _fseeki64 (stream, offset, origin);
291 __gnat_fseek64 (FILE *stream, __int64 offset, int origin) argument
297 return fseeko (stream, (off_t) offset, origin);
311 __gnat_fseek64 (FILE *stream, __int64 offset, int origin) argument
317 return fseek (stream, (off_t) offset, origin);
/haiku-buildtools/gcc/zlib/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 Dminizip.c35 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
39 #define FSEEKO_FUNC(stream, offset, origin) fseeko64(stream, offset, origin)
H A Diowin32.c32 long ZCALLBACK win32_seek64_file_func OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin));
237 long ZCALLBACK win32_seek_file_func (voidpf opaque,voidpf stream,uLong offset,int origin) argument
245 switch (origin)
274 long ZCALLBACK win32_seek64_file_func (voidpf opaque, voidpf stream,ZPOS64_T offset,int origin) argument
283 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)
/haiku-buildtools/binutils/zlib/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 Dminizip.c35 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
39 #define FSEEKO_FUNC(stream, offset, origin) fseeko64(stream, offset, 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)
/haiku-buildtools/gcc/libstdc++-v3/libsupc++/
H A Ddyncast.cc43 * origin of dst. */
53 -offsetof (vtable_prefix, origin));
67 -offsetof (vtable_prefix, origin));
H A Dtinfo.h60 const void *origin; member in struct:__cxxabiv1::__anon2406::vtable_prefix
/haiku-buildtools/gcc/libsanitizer/include/sanitizer/
H A Dmsan_interface.h20 /* Set raw origin for the memory range. */
21 void __msan_set_origin(const volatile void *a, size_t size, uint32_t origin);
23 /* Get raw origin for an address. */
29 /* Returns the origin id of the latest UMR in the calling thread. */
71 /* Print shadow and origin for the memory range to stderr in a human-readable
83 Memory will be marked uninitialized, with origin at the call site. */
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/
H A Dpr50672.C23 BoxCoordinate& origin(BoxDimension d) const;
29 d++) if (p[d] < r.origin(d) || p[d] >= r.origin(d) + r.space(d))
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/
H A Dconstexpr-neg1.C64 constexpr pixel2 origin; // { dg-error "uninitialized const" } variable
/haiku-buildtools/legacy/gcc/gcc/
H A Ddwarfout.c1172 /* Determine the "ultimate origin" of a decl. The decl may be an
1175 through the origin chain to find out what sort of node actually
1192 /* Determine the "ultimate origin" of a block. The block may be an
1195 through the origin chain to find out what sort of node actually
3024 abstract_origin_attribute (origin)
3025 register tree origin;
3030 switch (TREE_CODE_CLASS (TREE_CODE (origin)))
3033 sprintf (label, DECL_NAME_FMT, DECL_UID (origin));
3037 sprintf (label, TYPE_NAME_FMT, TYPE_UID (origin));
3317 register tree origin
3425 register tree origin = decl_ultimate_origin (node); local
3459 register tree origin = decl_ultimate_origin (decl); local
3508 register tree origin = decl_ultimate_origin (decl); local
3536 register tree origin = decl_ultimate_origin (decl); local
3626 register tree origin = decl_ultimate_origin (decl); local
3840 register tree origin = decl_ultimate_origin (decl); local
3903 register tree origin = decl_ultimate_origin (decl); local
4618 register tree origin; local
4824 register tree origin = decl_class_context (decl); local
5062 register tree origin = decl_class_context (decl); local
5088 register tree origin = decl_ultimate_origin (decl); local
[all...]
H A Ddwarf2out.c3625 /* Determine the "ultimate origin" of a decl. The decl may be an inlined
3627 function, so we have to trace all of the way back through the origin chain
3645 /* Determine the "ultimate origin" of a block. The block may be an inlined
3647 function, so we have to trace all of the way back through the origin chain
7619 add_abstract_origin_attribute (die, origin)
7621 register tree origin;
7624 if (TREE_CODE_CLASS (TREE_CODE (origin)) == 'd')
7625 origin_die = lookup_decl_die (origin);
7626 else if (TREE_CODE_CLASS (TREE_CODE (origin)) == 't')
7627 origin_die = lookup_type_die (origin);
8224 register tree origin; local
8349 register tree origin = decl_ultimate_origin (decl); local
8639 register tree origin = decl_ultimate_origin (decl); local
8717 register tree origin = decl_ultimate_origin (decl); local
9139 register tree origin; local
9364 register tree origin; local
9513 register tree origin; local
[all...]
/haiku-buildtools/legacy/binutils/bfd/
H A Dbfdio.c212 ptr -= abfd->origin;
333 file_position += abfd->origin;
/haiku-buildtools/gcc/gcc/testsuite/obj-c++.dg/
H A Dencode-4.mm30 typedef struct _XXRect { XXPoint origin; XXSize size; } XXRect;
H A Dencode-5.mm30 typedef struct _XXRect { XXPoint origin; XXSize size; struct _XXRect *next; } XXRect;
/haiku-buildtools/gcc/gcc/testsuite/objc.dg/
H A Dencode-2.m30 typedef struct _XXRect { XXPoint origin; XXSize size; } XXRect;
/haiku-buildtools/legacy/gcc/gcc/ch/
H A Dtypeck.c3372 tree origin = TREE_TYPE (type);
3373 tree main_tree = TYPE_MAIN_VARIANT (origin);
3382 if (origin == NULL_TREE)
3389 if (origin == char_type_node)
3391 origin = build_string_type (origin, save_domain);
3395 int is_varying = chill_varying_type_p (origin);
3397 tree origin_novelty = CH_NOVELTY (origin);
3399 origin = CH_VARYING_ARRAY_TYPE (origin);
3353 tree origin = TREE_TYPE (type); local
[all...]
/haiku-buildtools/gcc/zlib/contrib/dotzlib/DotZLib/
H A DGZipStream.cs252 /// <param name="origin"></param>
255 public override long Seek(long offset, SeekOrigin origin) argument
/haiku-buildtools/binutils/zlib/contrib/dotzlib/DotZLib/
H A DGZipStream.cs252 /// <param name="origin"></param>
255 public override long Seek(long offset, SeekOrigin origin) argument

Completed in 255 milliseconds

1234