/external/syslinux/com32/lib/ |
D | getopt.c | 17 } pvt; variable 32 if (optstring != pvt.last_optstring || argv != pvt.last_argv || in getopt() 35 pvt.last_optstring = optstring; in getopt() 36 pvt.last_argv = argv; in getopt() 38 pvt.optptr = NULL; in getopt() 54 if ((uintptr_t) (pvt.optptr - carg) > (uintptr_t) strlen(carg)) { in getopt() 56 pvt.optptr = carg + 1; in getopt() 59 opt = *pvt.optptr++; in getopt() 63 if (*pvt.optptr) { in getopt() 66 optarg = (char *)pvt.optptr; in getopt() [all …]
|
D | getopt_long.c | 22 } pvt; variable 52 if (optstring != pvt.last_optstring || argv != pvt.last_argv || in getopt_long() 55 pvt.last_optstring = optstring; in getopt_long() 56 pvt.last_argv = argv; in getopt_long() 58 pvt.optptr = NULL; in getopt_long() 109 if ((uintptr_t) (pvt.optptr - carg) > (uintptr_t) strlen(carg)) { in getopt_long() 111 pvt.optptr = carg + 1; in getopt_long() 114 opt = *pvt.optptr++; in getopt_long() 118 if (*pvt.optptr) { in getopt_long() 121 optarg = (char *)pvt.optptr; in getopt_long() [all …]
|
/external/syslinux/libinstaller/getopt/ |
D | getopt_long.c | 22 } pvt; variable 52 if (optstring != pvt.last_optstring || argv != pvt.last_argv || in getopt_long() 55 pvt.last_optstring = optstring; in getopt_long() 56 pvt.last_argv = argv; in getopt_long() 58 pvt.optptr = NULL; in getopt_long() 109 if ((uintptr_t) (pvt.optptr - carg) > (uintptr_t) strlen(carg)) { in getopt_long() 111 pvt.optptr = carg + 1; in getopt_long() 114 opt = *pvt.optptr++; in getopt_long() 118 if (*pvt.optptr) { in getopt_long() 121 optarg = (char *)pvt.optptr; in getopt_long() [all …]
|
/external/fio/oslib/ |
D | getopt_long.c | 26 } pvt; variable 58 if (optstring != pvt.last_optstring || argv != pvt.last_argv || in getopt_long_only() 61 pvt.last_optstring = optstring; in getopt_long_only() 62 pvt.last_argv = argv; in getopt_long_only() 64 pvt.optptr = NULL; in getopt_long_only() 141 if ((uintptr_t) (pvt.optptr - carg) > (uintptr_t) strlen(carg)) { in getopt_long_only() 143 pvt.optptr = carg + 1; in getopt_long_only() 146 opt = *pvt.optptr++; in getopt_long_only() 150 if (*pvt.optptr) { in getopt_long_only() 153 optarg = (char *)pvt.optptr; in getopt_long_only() [all …]
|
/external/clang/test/OpenMP/ |
D | target_parallel_messages.cpp | 8 static int pvt; variable 9 #pragma omp threadprivate(pvt) 68 …#pragma omp target parallel copyin(pvt) // expected-error {{unexpected OpenMP clause 'copyin' in d… in main()
|
D | target_parallel_for_messages.cpp | 6 static int pvt; variable 7 #pragma omp threadprivate(pvt) 81 #pragma omp target parallel for copyin(pvt) // expected-error {{unexpected OpenMP clause 'copyin' i… in main()
|
D | target_parallel_for_simd_messages.cpp | 6 static int pvt; variable 7 #pragma omp threadprivate(pvt) 81 #pragma omp target parallel for simd copyin(pvt) // expected-error {{unexpected OpenMP clause 'copy… in main()
|
/external/syslinux/com32/lib/sys/ |
D | zfile.c | 67 fp->i.pvt = zs; in gzip_file_init() 85 z_streamp zs = fp->i.pvt; in gzip_file_read() 133 z_streamp zs = fp->i.pvt; in gzip_file_close()
|
D | ansi.c | 40 .pvt = false, 146 st->pvt = false; in __ansi_putchar() 175 st->pvt = true; in __ansi_putchar()
|
D | file.h | 95 void *pvt; /* Private pointer for driver */ member
|
D | ansi.h | 30 bool pvt; /* Private code? */ member
|
/external/syslinux/core/fs/ufs/ |
D | ufs.c | 223 dest = (uint64_t *) inode->pvt; in ufs1_iget_by_inr() 253 memcpy(inode->pvt, ufs_inode->direct_blk_ptr, in ufs2_iget_by_inr() 284 const uint64_t *source = (uint64_t *) (inode->pvt); in ufs1_read_blkaddrs() 304 memcpy(buf, (const char *) (inode->pvt), inode->size); in ufs2_read_blkaddrs()
|
D | ufs.h | 208 #define PVT(p) ((struct ufs_inode_pvt *) p->pvt)
|
/external/syslinux/core/fs/iso9660/ |
D | iso9660_fs.h | 54 #define PVT(i) ((struct iso9660_pvt_inode *)((i)->pvt))
|
/external/syslinux/core/lwip/src/include/arch/ |
D | sys_arch.h | 63 return (struct sys_timeouts *)¤t()->pvt; in sys_arch_timeouts()
|
/external/syslinux/core/include/ |
D | thread.h | 51 void *pvt; /* For the benefit of lwIP */ member
|
D | fs.h | 116 char pvt[0]; /* Private filesystem data */ member
|
/external/syslinux/core/fs/fat/ |
D | fat_fs.h | 158 #define PVT(i) ((struct fat_pvt_inode *)((i)->pvt))
|
/external/syslinux/core/fs/pxe/ |
D | pxe.h | 151 #define PVT(i) ((struct pxe_pvt_inode *)((i)->pvt))
|
/external/syslinux/core/fs/ext2/ |
D | ext2_fs.h | 303 #define PVT(i) ((struct ext2_pvt_inode *)((i)->pvt))
|
/external/syslinux/core/fs/btrfs/ |
D | btrfs.h | 293 #define PVT(i) ((struct btrfs_pvt_inode *)((i)->pvt))
|
/external/syslinux/core/fs/ntfs/ |
D | ntfs.h | 483 #define NTFS_PVT(i) ((struct ntfs_inode *)((i)->pvt))
|
/external/syslinux/core/fs/xfs/ |
D | xfs.h | 47 #define XFS_PVT(ino) ((struct xfs_inode *)((ino)->pvt))
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/bench/ |
D | jquery-1.7.1.js | 1647 data: function( elem, name, data, pvt /* Internal Use Only */ ) { argument 1671 …if ( (!id || !cache[id] || (!isEvents && !pvt && !cache[id].data)) && getByName && data === undefi… 1698 if ( pvt ) { 1710 if ( !pvt ) { 1748 removeData: function( elem, name, pvt /* Internal Use Only */ ) { argument 1774 thisCache = pvt ? cache[ id ] : cache[ id ].data; 1802 if ( !( pvt ? isEmptyDataObject : jQuery.isEmptyObject )( thisCache ) ) { 1809 if ( !pvt ) {
|
/external/toolchain-utils/android_bench_suite/panorama_input/ |
D | test_007.ppm | 5424 …!"'! 7J.'E#C!=406SAIo]etq������ƛ��b`pvt�������=AT36J}������…
|