dumplib.c#743 ncbyte_typ_tostring(const nctype_t *typ, safebuf_t *sfbf, const void *valp) { #746 res = snprintf(sout, PRIM_LEN, typ->fmt, *(signed char *)valp); #753 ncchar_typ_tostring(const nctype_t *typ, safebuf_t *sfbf, const void *valp) { #756 res = snprintf(sout, PRIM_LEN, typ->fmt, *(char *)valp); #763 ncshort_typ_tostring(const nctype_t *typ, safebuf_t *sfbf, const void *valp) { #766 res = snprintf(sout, PRIM_LEN, typ->fmt, *(short *)valp); #773 ncint_typ_tostring(const nctype_t *typ, safebuf_t *sfbf, const void *valp) { #776 res = snprintf(sout, PRIM_LEN, typ->fmt, *(int *)valp); #821 ncfloat_typ_tostring(const nctype_t *typ, safebuf_t *sfbf, const void *valp) { #823 float vv = *(float *)valp; #836 ncdouble_typ_tostring(const nctype_t *typ, safebuf_t *sfbf, const void *valp) { #838 double vv = *(double *)valp; #851 ncubyte_typ_tostring(const nctype_t *typ, safebuf_t *sfbf, const void *valp) { #854 res = snprintf(sout, PRIM_LEN, typ->fmt, *(unsigned char *)valp); #861 ncushort_typ_tostring(const nctype_t *typ, safebuf_t *sfbf, const void *valp) { #864 res = snprintf(sout, PRIM_LEN, typ->fmt, *(unsigned short *)valp); #871 ncuint_typ_tostring(const nctype_t *typ, safebuf_t *sfbf, const void *valp) { #874 res = snprintf(sout, PRIM_LEN, typ->fmt, *(unsigned int *)valp); #881 ncint64_typ_tostring(const nctype_t *typ, safebuf_t *sfbf, const void *valp) { #884 res = snprintf(sout, PRIM_LEN, typ->fmt, *(long long *)valp); #891 ncuint64_typ_tostring(const nctype_t *typ, safebuf_t *sfbf, const void *valp) { #894 res = snprintf(sout, PRIM_LEN, typ->fmt, *(unsigned long long *)valp); #900 int ncstring_typ_tostring(const nctype_t *typ, safebuf_t *sfbf, const void *valp) { #903 cp = ((char **)valp)[0]; #975 ncenum_typ_tostring(const nctype_t *typ, safebuf_t *sfbf, const void *valp) { #981 val = *(signed char *)valp; #984 val = *(unsigned char *)valp; #987 val = *(short *)valp; #990 val = *(unsigned short *)valp; #993 val = *(int *)valp; #996 val = *(unsigned int *)valp; #999 val = *(long long *)valp; #1002 val = *(long long *)valp; #1017 ncopaque_val_as_hex(size_t size, char *sout, const void *valp) { #1018 const unsigned char *cp = valp; #1040 const void *valp) { #1042 (void) ncopaque_val_as_hex(typ->size, sout, valp); #1050 ncvlen_typ_tostring(const nctype_t *tinfo, safebuf_t *sfbf, const void *valp) { #1054 size_t len = ((nc_vlen_t *)valp)->len; #1062 vp = ((nc_vlen_t *)valp)->p; #1132 nccomp_typ_tostring(const nctype_t *tinfo, safebuf_t *sfbf, const void *valp) { #1146 chars_tostring(sout2, 1, ((char *)valp + offset)); #1148 finfo->typ_tostring(finfo, sout2, ((char *)valp + offset)); #1152 void *vp = (char *)valp + offset; #1199 ncbyte_val_tostring(const ncvar_t *varp, safebuf_t *sfbf, const void *valp) { #1202 res = snprintf(sout, PRIM_LEN, varp->fmt, *(signed char *)valp); #1209 ncchar_val_tostring(const ncvar_t *varp, safebuf_t *sfbf, const void *valp) { #1212 res = snprintf(sout, PRIM_LEN, varp->fmt, *(char *)valp); #1219 ncshort_val_tostring(const ncvar_t *varp, safebuf_t *sfbf, const void *valp) { #1222 res = snprintf(sout, PRIM_LEN, varp->fmt, *(short *)valp); #1229 ncint_val_tostring(const ncvar_t *varp, safebuf_t *sfbf, const void *valp) { #1232 res = snprintf(sout, PRIM_LEN, varp->fmt, *(int *)valp); #1239 ncfloat_val_tostring(const ncvar_t *varp, safebuf_t *sfbf, const void *valp) { #1241 float vv = *(float *)valp; #1254 ncdouble_val_tostring(const ncvar_t *varp, safebuf_t *sfbf, const void *valp) { #1256 double vv = *(double *)valp; #1271 double to_double(const ncvar_t *varp, const void *valp) { #1275 dd = *(signed char *)valp; #1278 dd = *(short *)valp; #1281 dd = *(int *)valp; #1284 dd = *(float *)valp; #1287 dd = *(double *)valp; #1290 dd = *(unsigned char *)valp; #1293 dd = *(unsigned short *)valp; #1296 dd = *(unsigned int *)valp; #1299 dd = *(long long *)valp; #1302 dd = *(unsigned long long *)valp; #1311 nctime_val_tostring(const ncvar_t *varp, safebuf_t *sfbf, const void *valp) { #1313 double vv = to_double(varp, valp); #1331 ncubyte_val_tostring(const ncvar_t *varp, safebuf_t *sfbf, const void *valp) { #1334 res = snprintf(sout, PRIM_LEN, varp->fmt, *(unsigned char *)valp); #1341 ncushort_val_tostring(const ncvar_t *varp, safebuf_t *sfbf, const void *valp) { #1344 res = snprintf(sout, PRIM_LEN, varp->fmt, *(unsigned short *)valp); #1351 ncuint_val_tostring(const ncvar_t *varp, safebuf_t *sfbf, const void *valp) { #1354 res = snprintf(sout, PRIM_LEN, varp->fmt, *(unsigned int *)valp); #1361 ncint64_val_tostring(const ncvar_t *varp, safebuf_t *sfbf, const void *valp) { #1364 res = snprintf(sout, PRIM_LEN, varp->fmt, *(long long *)valp); #1371 ncuint64_val_tostring(const ncvar_t *varp, safebuf_t *sfbf, const void *valp) { #1374 res = snprintf(sout, PRIM_LEN, varp->fmt, *(unsigned long long *)valp); #1381 ncstring_val_tostring(const ncvar_t *varp, safebuf_t *sfbf, const void *valp) { #1382 return ncstring_typ_tostring(varp->tinfo, sfbf, valp); #1387 ncenum_val_tostring(const ncvar_t *varp, safebuf_t *sfbf, const void *valp) { #1388 return ncenum_typ_tostring(varp->tinfo, sfbf, valp); #1394 ncopaque_val_tostring(const ncvar_t *varp, safebuf_t *sfbf, const void *valp) { #1395 return ncopaque_typ_tostring(varp->tinfo, sfbf, valp); #1400 ncvlen_val_tostring(const ncvar_t *varp, safebuf_t *sfbf, const void *valp) { #1401 return ncvlen_typ_tostring(varp->tinfo, sfbf, valp); #1405 nccomp_val_tostring(const ncvar_t *varp, safebuf_t *sfbf, const void *valp) { #1406 return nccomp_typ_tostring(varp->tinfo, sfbf, valp); dumplib.h#77 extern int ncopaque_val_as_hex ( size_t size, char *buf, const void *valp ); #119 int nctime_val_tostring(const ncvar_t *varp, safebuf_t *sfbf, const void *valp); genlib.c#123 void *valp, /* pointer to vector of values */ #137 ch = *((char *)valp + num); #166 bytep = (signed char *)valp; #173 shortp = (short *)valp; #179 intp = (int *)valp; #185 floatp = (float *)valp; #191 doublep = (double *)valp; #1040 void *valp, /* pointer to vector of values */ #1053 schp = (signed char *)valp; #1059 shortp = (short *)valp; #1065 intp = (int *)valp; #1071 floatp = (float *)valp; #1077 doublep = (double *)valp; #1095 const char *valp, /* pointer to vector of characters*/ #1109 if(len == 1 && *valp == 0) { /* empty string */ #1116 istr[ii] = valp[ii]; genlib.h#31 extern char* fstring ( nc_type type, void* valp, int num ); #32 extern char* cstrstr ( const char* valp, size_t len ); nccomps.h#31 const void *valp); #42 const void *valp); nctime0.c#317 const char *valp = (const char *)att->valgp; /* attrib value pointer */ #329 nctime_val_tostring(&var, sb, (void *)valp); /* convert to str. */ #330 valp += att->tinfo->size; /* increment value pointer, by type */ vardata.c#147 const void *valp /* pointer to the value */ #150 (*typ->typ_tostring)(typ, sb, valp); #164 const void *valp /* pointer to the value */ #169 (const void*)varp->fillvalp, valp) ) { #172 (*varp->val_tostring)(varp, sb, valp); #224 const char *valp = (const char *)vals; #228 print_any_att_val(sb, ap, (void *)valp); #229 valp += ap->tinfo->size; /* next value according to type */ #233 print_any_att_val(sb, ap, (void *)valp); #467 char *valp = vals; #473 NC_CHECK(nc_get_vara(ncid, varid, cor, edg, (void *)valp)); #480 print_any_val(sb, vp, (void *)valp); #481 valp += vp->tinfo->size; /* next value according to type */ #490 print_any_val(sb, vp, (void *)valp); #693 const char *valp = (const char *)vals; #696 print_any_val(sb, vp, (void *)valp); #697 valp += vp->tinfo->size; /* next value according to type */ #701 print_any_val(sb, vp, (void *)valp);
HyperKWIC - Version 7.20DA executed at 11:37 on 27 Oct 2017 | Polyhedron Solutions - INTERNAL USE | COMMERCIAL (Any O/S) SN 4AKIed