Home
last modified time | relevance | path

Searched refs:base (Results 1 – 24 of 24) sorted by relevance

/libtiff-4.0.7/port/
H A Dstrtoull.c46 strtoull(const char *nptr, char **endptr, int base) in strtoull() argument
69 if ((base == 0 || base == 16) && in strtoull()
76 base = 16; in strtoull()
78 if (base == 0) in strtoull()
79 base = c == '0' ? 8 : 10; in strtoull()
81 if (base < 2 || base > 36) in strtoull()
84 cutoff = ULLONG_MAX / base; in strtoull()
85 cutlim = ULLONG_MAX % base; in strtoull()
95 if (c >= base) in strtoull()
101 acc *= base; in strtoull()
H A Dstrtoul.c49 strtoul(const char *nptr, char **endptr, int base) in strtoul() argument
71 if ((base == 0 || base == 16) && in strtoul()
75 base = 16; in strtoul()
77 if (base == 0) in strtoul()
78 base = c == '0' ? 8 : 10; in strtoul()
80 cutoff = ULONG_MAX / (unsigned long)base; in strtoul()
81 cutlim = (int)(ULONG_MAX % (unsigned long)base); in strtoul()
89 if (c >= base) in strtoul()
99 acc *= (unsigned long)base; in strtoul()
H A Dlfind.c51 lfind(const void *key, const void *base, size_t *nmemb, size_t size, in lfind() argument
56 end = (char *)base + *nmemb * size; in lfind()
57 for (element = (char *)base; element < end; element += size) in lfind()
H A Dlibport.h42 unsigned long strtoul(const char *nptr, char **endptr, int base);
47 lfind(const void *key, const void *base, size_t *nmemb, size_t size,
/libtiff-4.0.7/config/
H A Ddepcomp305 tmpdepfile1=$dir$base.u
306 tmpdepfile2=$base.u
310 tmpdepfile1=$dir$base.u
311 tmpdepfile2=$dir$base.u
312 tmpdepfile3=$dir$base.u
378 tmpdepfile=$base.d
384 lockdir=$base.d-lock
445 tmpdepfile1=$dir$base.d
449 tmpdepfile1=$dir$base.d
450 tmpdepfile2=$dir$base.d
[all …]
H A Dltmain.sh5948 const char *base;
5956 for (base = name; *name; name++)
5958 base = name + 1;
5959 return base;
/libtiff-4.0.7/test/
H A DMakefile.am213 base=`basename $$file .tiff` ; \
214 testscript=$(srcdir)/tiff2rgba-$$base.sh ; \
220 echo "outfile=\"o-tiff2rgba-$$base.tiff\"" ; \
231 base=`basename $$file .tiff` ; \
232 testscript=$(srcdir)/tiffcrop-R90-$$base.sh ; \
238 echo "outfile=\"o-tiffcrop-R90-$$base.tiff\"" ; \
249 base=`basename $$file .tiff` ; \
250 testscript=$(srcdir)/tiffcrop-doubleflip-$$base.sh ; \
267 base=`basename $$file .tiff` ; \
268 testscript=$(srcdir)/tiffcrop-extract-$$base.sh ; \
[all …]
H A DTiffTest.cmake40 get_filename_component(base "${OUTFILE}" NAME)
44 test_convert("${CONVERT_COMMAND2}" "${OUTFILE}" "${base}-2${ext}")
46 tiffinfo_validate("${base}-2${ext}")
51 test_convert("${CONVERT_COMMAND3}" "${base}-2${ext}" "${base}-3${ext}")
53 tiffinfo_validate("${base}-3${ext}")
H A DCMakeLists.txt230 get_filename_component(base "${image}" NAME_WE)
231 set(testname "${commandname1}-${categoryname}-${base}")
287 get_filename_component(base "${image}" NAME_WE)
288 set(testname "${commandname}-${base}")
299 get_filename_component(base "${image}" NAME_WE)
300 set(testname "${commandname}-${base}")
H A DMakefile.in1832 base=`basename $$file .tiff` ; \
1833 testscript=$(srcdir)/tiff2rgba-$$base.sh ; \
1839 echo "outfile=\"o-tiff2rgba-$$base.tiff\"" ; \
1850 base=`basename $$file .tiff` ; \
1851 testscript=$(srcdir)/tiffcrop-R90-$$base.sh ; \
1857 echo "outfile=\"o-tiffcrop-R90-$$base.tiff\"" ; \
1868 base=`basename $$file .tiff` ; \
1869 testscript=$(srcdir)/tiffcrop-doubleflip-$$base.sh ; \
1886 base=`basename $$file .tiff` ; \
1887 testscript=$(srcdir)/tiffcrop-extract-$$base.sh ; \
[all …]
/libtiff-4.0.7/libtiff/
H A Dtif_stream.cxx93 static int _tiffDummyMapProc(thandle_t , void** base, toff_t* size );
94 static void _tiffDummyUnmapProc(thandle_t , void* base, toff_t size );
341 _tiffDummyMapProc(thandle_t , void** base, toff_t* size ) in _tiffDummyMapProc() argument
343 (void) base; in _tiffDummyMapProc()
349 _tiffDummyUnmapProc(thandle_t , void* base, toff_t size ) in _tiffDummyUnmapProc() argument
351 (void) base; in _tiffDummyUnmapProc()
H A Dtif_vms.c99 char *base; member
165 map_table[no_mapped].base = retadr[0]; in _tiffMapProc()
179 _tiffUnmapProc(thandle_t fd, tdata_t base, toff_t size) in _tiffUnmapProc() argument
186 if (map_table[i].base == (char *) base) { in _tiffUnmapProc()
188 inadr[0] = (char *) base; in _tiffUnmapProc()
208 _tiffUnmapProc(thandle_t fd, tdata_t base, toff_t size) in _tiffUnmapProc() argument
H A Dtif_unix.c181 _tiffUnmapProc(thandle_t fd, void* base, toff_t size) in _tiffUnmapProc() argument
184 (void) munmap(base, (off_t) size); in _tiffUnmapProc()
195 _tiffUnmapProc(thandle_t fd, void* base, toff_t size) in _tiffUnmapProc() argument
197 (void) fd; (void) base; (void) size; in _tiffUnmapProc()
H A Dtif_win32.c207 _tiffDummyUnmapProc(thandle_t fd, void* base, toff_t size) in _tiffDummyUnmapProc() argument
210 (void) base; in _tiffDummyUnmapProc()
215 _tiffUnmapProc(thandle_t fd, void* base, toff_t size) in _tiffUnmapProc() argument
219 UnmapViewOfFile(base); in _tiffUnmapProc()
H A Dtif_lzw.c103 #define lzw_nbits base.nbits
104 #define lzw_maxcode base.maxcode
105 #define lzw_free_ent base.free_ent
106 #define lzw_nextdata base.nextdata
107 #define lzw_nextbits base.nextbits
131 LZWBaseState base; member
H A Dtif_open.c43 _tiffDummyUnmapProc(thandle_t fd, void* base, toff_t size) in _tiffDummyUnmapProc() argument
45 (void) fd; (void) base; (void) size; in _tiffDummyUnmapProc()
H A Dtiffio.h279 typedef int (*TIFFMapFileProc)(thandle_t, void** base, toff_t* size);
280 typedef void (*TIFFUnmapFileProc)(thandle_t, void* base, toff_t size);
H A Dtif_dirinfo.c293 td_lfind(const void *key, const void *base, size_t *nmemb, size_t size, in td_lfind() argument
298 end = (char *)base + *nmemb * size; in td_lfind()
299 for (element = (char *)base; element < end; element += size) in td_lfind()
/libtiff-4.0.7/man/
H A DMakefile.in463 list=; while read file base inst; do \
464 if test "$$base" = "$$inst"; then list="$$list $$file"; else \
504 list=; while read file base inst; do \
505 if test "$$base" = "$$inst"; then list="$$list $$file"; else \
/libtiff-4.0.7/contrib/stream/
H A Dtiffstream.h38 static void unmap(thandle_t fd, tdata_t base, tsize_t size);
H A Dtiffstream.cpp161 TiffStream::unmap(thandle_t fd, tdata_t base, tsize_t size) in unmap() argument
/libtiff-4.0.7/m4/
H A Dltsugar.m41 # ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*-
H A Dlibtool.m4357 # VARNAME is the (base) name used in the configure script.
2948 # OS/2 can only load a DLL with a base name of 8 characters or less.
5113 …$deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-impl…
5122 …$deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-impl…
5167 # Instead, shared libraries are loaded at an image base (0x10000000 by
5170 # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
5172 …ared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} …
6687 …_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-impl…
6894 # Instead, shared libraries are loaded at an image base (0x10000000 by
6897 # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
[all …]
/libtiff-4.0.7/
H A Dconfigure10206 …$deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-impl…
10215 …$deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-impl…
10265 …ared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} …
10266 …$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} …