HomeSort by relevance Sort by last modified time
    Searched refs:packed (Results 1 - 25 of 26) sorted by null

1 2

  /netvirt/usr/src/uts/sun/sys/
ramdac.h 42 /* 3 Brooktree ramdac 457 or 458 packed in a 32-bit register */
51 #define ASSIGN_LUT(lut, value) (lut).packed = (value & 0xff) | \
78 (omap)[0].packed = 0x000000; \
79 (omap)[1].packed = 0xffffff; \
80 (omap)[2].packed = 0x00ff00; \
81 (omap)[3].packed = 0x000000; \
pixrect.h 352 unsigned int packed; /* whole-sale deal */ member in union:fbunit
  /netvirt/usr/src/grub/grub-0.95/stage2/
iso9660.h 87 } __attribute__ ((packed));
92 } __attribute__ ((packed));
109 } __attribute__ ((packed));
145 } __attribute__ ((packed));
204 } __attribute__ ((packed));
mb_info.h 53 } __attribute__ ((packed));
bios.c 65 } __attribute__ ((packed)) dap;
153 } __attribute__ ((packed)) cdrp;
261 } __attribute__ ((packed)) drp;
shared.h 435 } __attribute__ ((packed));
444 } __attribute__ ((packed));
461 } __attribute__ ((packed));
520 } __attribute__ ((packed));
837 corner of the screen). Returns packed values, (RET >> 8) is x,
848 /* Wait for a keypress, and return its packed BIOS/ASCII key code.
  /netvirt/usr/src/uts/common/fs/zfs/
zfs_fuid.c 46 * The FUID table is stored as a packed nvlist of an array
53 * on-disk packed nvlist will also be updated.
113 char *packed; local
156 packed = kmem_alloc(nvsize, KM_SLEEP);
157 error = dmu_read(zfsvfs->z_os, zfsvfs->z_fuid_obj, 0, nvsize, packed);
163 VERIFY(nvlist_unpack(packed, nvsize, &nvp, 0) == 0);
200 kmem_free(packed, nvsize);
251 char *packed; local
292 packed = kmem_alloc(nvsize, KM_SLEEP);
293 VERIFY(nvlist_pack(nvp, &packed, &nvsize
    [all...]
zfs_ioctl.c 643 char *packed; local
653 packed = kmem_alloc(size, KM_SLEEP);
655 if ((error = xcopyin((void *)(uintptr_t)nvl, packed, size)) != 0) {
656 kmem_free(packed, size);
660 if ((error = nvlist_unpack(packed, size, &list, 0)) != 0) {
661 kmem_free(packed, size);
665 kmem_free(packed, size);
674 char *packed = NULL; local
683 packed = kmem_alloc(size, KM_SLEEP);
684 VERIFY(nvlist_pack(nvl, &packed, &size, NV_ENCODE_NATIVE
    [all...]
spa.c 959 char *packed = NULL; local
968 packed = kmem_alloc(nvsize, KM_SLEEP);
969 error = dmu_read(spa->spa_meta_objset, obj, 0, nvsize, packed);
971 error = nvlist_unpack(packed, nvsize, value, 0);
972 kmem_free(packed, nvsize);
3777 char *packed = NULL; local
    [all...]
  /netvirt/usr/src/cmd/perl/5.8.4/distrib/t/op/
pack.t 186 skip("-- $^O has serious fp indigestion on w-packed infinities", 1)
486 . " packed with $format unpack '%$_$format' gave $sum,"
1078 my $packed = eval {pack "${template}4", 1, 4, 9, 16};
1084 my @unpack4 = unpack "${template}4", $packed;
1085 my @unpack = unpack "${template}*", $packed;
1086 my @unpack1 = unpack "${template}", $packed;
1087 my @unpack1s = scalar unpack "${template}", $packed;
1088 my @unpack4s = scalar unpack "${template}4", $packed;
1089 my @unpacks = scalar unpack "${template}*", $packed;
1098 my @unpack4_c = unpack "\%${template}4", $packed;
    [all...]
  /netvirt/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/shadow/java/awt/
WindowShadow.java 88 private boolean packed = false; field in class:WindowShadow
260 packed = false;
362 // Set the packed flag to true
363 packed = true;
378 if (packed && win.getPeer() == null)
379 packed = false;
381 if (!packed)
  /netvirt/usr/src/uts/common/fs/dev/
sdev_profile.c 787 char *packed; local
794 /* copyin packed profile nvlist */
795 packed = kmem_alloc(packed_sz, KM_NOSLEEP);
796 if (packed == NULL)
798 err = copyin(packed_usr, packed, packed_sz);
800 /* unpack packed profile nvlist */
804 else if (err = nvlist_unpack(packed, packed_sz, &profile, KM_NOSLEEP))
808 kmem_free(packed, packed_sz);
938 * modctl(). modctl calls this function. The input is a packed nvlist.
941 devname_profile_update(char *packed, size_t packed_sz
    [all...]
  /netvirt/usr/src/lib/libnsl/nis/cache/
mapped_cache.cc 786 void *packed; local
793 packed = packBinding(binding, &packed_len);
794 if (packed == NULL)
853 (void) memcpy(buf+offset, (char *)packed, packed_len);
866 free(packed);
934 void *packed; local
939 packed = packActive(act, &packed_len);
940 if (packed == NULL)
991 (void) memcpy(buf+offset, (char *)packed, packed_len);
997 free(packed);
    [all...]
  /netvirt/usr/src/cmd/perl/5.6.1/distrib/ext/Socket/
Socket.pm 78 Note: does not return a number, but a packed string.
89 Note: does not return a number, but a packed string.
123 packed in with AF_INET filled in. For internet domain sockets, this
147 that path packed in with AF_UNIX filled in. For unix domain sockets, this
  /netvirt/usr/src/cmd/perl/5.8.4/distrib/ext/Socket/
Socket.pm 83 Note: does not return a number, but a packed string.
94 Note: does not return a number, but a packed string.
137 structure with those arguments packed in with AF_INET filled in. For
163 that path packed in with AF_UNIX filled in. For unix domain sockets, this
  /netvirt/usr/src/lib/libzfs/common/
libzfs_util.c 694 char *packed; local
699 if ((packed = zfs_alloc(hdl, len)) == NULL)
702 verify(nvlist_pack(nvl, &packed, &len, NV_ENCODE_NATIVE, 0) == 0);
704 *outnv = (uint64_t)(uintptr_t)packed;
  /netvirt/usr/src/cmd/file/
magic 86 0 short 017037 packed data
262 0 short 017437 old packed data
263 0 string \037\036 packed data
  /netvirt/usr/src/grub/grub-0.95/netboot/
pxe.h 51 * Solution: use gcc's '__attribute__ ((packed))' to correctly align
55 #define PACKED __attribute__ ((packed))
74 } PACKED SEGDESC_t; /* PACKED is required, otherwise gcc pads this out to 12
108 } PACKED pxenv_t;
132 } PACKED pxe_t;
142 } PACKED t_PXENV_START_UNDI;
147 } PACKED t_PXENV_UNDI_STARTUP;
152 } PACKED t_PXENV_UNDI_CLEANUP
    [all...]
  /netvirt/usr/src/common/nvpair/
nvpair.c 469 * trusted. This function is used when decoding packed nvpairs.
2297 nvlist_t *packed = (void *) local
2317 nvlist_t *packed = (nvlist_t *)((uintptr_t)value + len); local
    [all...]
  /netvirt/usr/src/cmd/perl/contrib/Sun/Solaris/Exacct/
Exacct.xs 228 * to wrap exacct records that have been read from a file, or packed records
548 # an ::Exacct::Object, in which case it will be packed and inserted in the
  /netvirt/usr/src/cmd/perl/contrib/Sun/Solaris/Exacct/pod/
Exacct.pod 62 C<Sun::Solaris::Exacct::Object>, it is converted to the corresponding packed
  /netvirt/usr/src/cmd/zdb/
zdb.c 205 char *packed = umem_alloc(nvsize, UMEM_NOFAIL); local
207 VERIFY(0 == dmu_read(os, object, 0, nvsize, packed));
209 VERIFY(nvlist_unpack(packed, nvsize, &nv, 0) == 0);
211 umem_free(packed, nvsize);
908 dump_none, /* packed nvlist */
909 dump_packed_nvlist, /* packed nvlist size */
    [all...]
  /netvirt/usr/src/cmd/perl/5.6.1/distrib/utils/
h2xs.PL     [all...]
  /netvirt/usr/src/cmd/perl/5.8.4/distrib/utils/
h2xs.PL     [all...]
  /netvirt/usr/src/cmd/perl/5.6.1/distrib/lib/
CGI.pm     [all...]

Completed in 6060 milliseconds

1 2