HomeSort by: relevance | last modified time | path
    Searched defs:pack (Results 1 - 25 of 60) sorted by relevancy

1 2 3

  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/therm/
nouveau_nvkm_subdev_therm_gf100.c 33 #define pack_for_each_init(init, pack, head) \
34 for (pack = head; pack && pack->init; pack++) \
35 for (init = pack->init; init && init->count; init++)
41 const struct nvkm_therm_clkgate_pack *pack; local
45 pack_for_each_init(init, pack, p) {
  /src/external/gpl3/gcc/dist/libgcc/config/gcn/
lib2-divmod-di.c 27 union pack { union
65 union pack res;
93 union pack u;
101 union pack u;
110 union pack u;
118 union pack u;
lib2-divmod.c 27 union pack { union
65 union pack res;
93 union pack u;
101 union pack u;
110 union pack u;
119 union pack u;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
long_long.c 32 pack (unsigned char b[MAX_BYTES], int size, int nr) function
83 /* Pack Byte, Half, Word and Giant arrays with byte-ordered values.
86 pack (b, 1, 2);
87 pack (h, 2, 2);
88 pack (w, 4, 2);
89 pack (g, 8, 2);
90 pack (c, sizeof (char), 2);
91 pack (s, sizeof (short), 2);
92 pack (i, sizeof (int), 2);
93 pack (l, sizeof (long), 2)
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
long_long.c 32 pack (unsigned char b[MAX_BYTES], int size, int nr) function
83 /* Pack Byte, Half, Word and Giant arrays with byte-ordered values.
86 pack (b, 1, 2);
87 pack (h, 2, 2);
88 pack (w, 4, 2);
89 pack (g, 8, 2);
90 pack (c, sizeof (char), 2);
91 pack (s, sizeof (short), 2);
92 pack (i, sizeof (int), 2);
93 pack (l, sizeof (long), 2)
    [all...]
  /src/external/bsd/libfido2/dist/fuzz/
fuzz_attobj.c 203 pack(uint8_t *ptr, size_t len, const struct param *p) function
261 assert((blob_len = pack(blob, sizeof(blob), &dummy)) != 0);
fuzz_netlink.c 60 pack(uint8_t *ptr, size_t len, const struct param *p) function
111 assert((blob_len = pack(blob, sizeof(blob), &dummy)) != 0);
fuzz_hid.c 88 pack(uint8_t *ptr, size_t len, const struct param *p) function
144 assert((blob_len = pack(blob, sizeof(blob), &dummy)) != 0);
fuzz_largeblob.c 101 pack(uint8_t *ptr, size_t len, const struct param *p) function
162 assert((blob_len = pack(blob, sizeof(blob), &dummy)) != 0);
  /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-java-swing/
Hello.java 45 frame.pack();
  /src/external/gpl3/gcc/dist/libgfortran/intrinsics/
pack_generic.c 1 /* Generic implementation of the PACK intrinsic
29 /* PACK is specified as follows:
31 13.14.80 PACK (ARRAY, MASK, [VECTOR])
33 Description: Pack an array into an array of rank one under the
61 | 9 0 0 | may be "gathered" by the function PACK. The result of
63 PACK (M, MASK = M.NE.0) is [9,7] and the result of PACK (M, M.NE.0,
66 There are two variants of the PACK intrinsic: one, where MASK is
178 runtime_error ("Incorrect extent in return value of PACK intrinsic;"
253 extern void pack (gfc_array_char *, const gfc_array_char *
255 export_proto(pack); variable
258 pack (gfc_array_char *ret, const gfc_array_char *array, function
    [all...]
  /src/external/gpl3/gcc.old/dist/libgfortran/intrinsics/
pack_generic.c 1 /* Generic implementation of the PACK intrinsic
29 /* PACK is specified as follows:
31 13.14.80 PACK (ARRAY, MASK, [VECTOR])
33 Description: Pack an array into an array of rank one under the
61 | 9 0 0 | may be "gathered" by the function PACK. The result of
63 PACK (M, MASK = M.NE.0) is [9,7] and the result of PACK (M, M.NE.0,
66 There are two variants of the PACK intrinsic: one, where MASK is
175 runtime_error ("Incorrect extent in return value of PACK intrinsic;"
250 extern void pack (gfc_array_char *, const gfc_array_char *
252 export_proto(pack); variable
255 pack (gfc_array_char *ret, const gfc_array_char *array, function
    [all...]
  /src/sbin/mknod/
mknod.c 85 pack_t *pack; local
100 pack = pack_native;
124 pack = pack_find(optarg);
125 if (pack == NULL)
249 dev = callPack(pack, argc, numbers);
pack_dev.c 242 /* list of formats and pack functions */
246 pack_t *pack; member in struct:format
289 return (format->pack);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/gr/
nouveau_nvkm_engine_gr_gk20a.c 48 struct gf100_gr_pack *pack; local
58 pack = vzalloc((sizeof(*pack) * 2) + (sizeof(*init) * (nent + 1)));
59 if (!pack) {
64 init = (void *)(pack + 2);
65 pack[0].init = init;
77 *ppack = pack;
98 struct gf100_gr_pack *pack; local
108 pack = vzalloc((sizeof(*pack) * 2) + (sizeof(*init) * (nent + 1)))
141 struct gf100_gr_pack *pack; local
    [all...]
  /src/usr.sbin/tpctl/
fb.c 262 int pack; local
274 pack = x / fb->conf.hf_pixels_per_pack;
282 x += pack * fb->conf.hf_pack_width;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
Bitfields.h 119 /// The `pack` method also checks that the passed in `UserValue` is valid.
125 static T pack(T UserValue, T UserMaxValue) { function in struct:llvm::bitfields_details::Compressor
138 static T pack(T UserValue, T UserMaxValue) { function in struct:llvm::bitfields_details::Compressor
171 const StorageType StorageValue = C::pack(UserValue, Bitfield::UserMaxValue);
  /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-java-awt/
Hello.java 48 frame.pack();
  /src/sys/arch/prep/pnpbus/
pnpbus.c 185 struct _L1_Pack *pack = v; local
187 if (pack->Count0 >= 0x9) {
189 mem->minbase = (pack->Data[2] << 16) | (pack->Data[1] << 8);
190 mem->maxbase = (pack->Data[4] << 16) | (pack->Data[3] << 8);
191 mem->align = (pack->Data[6] << 8) | pack->Data[5];
192 mem->len = (pack->Data[8] << 16) | (pack->Data[7] << 8)
206 struct _L4_Pack *pack = v; local
292 struct _L4_Pack *pack = v; local
343 ChipIDPack *pack; local
    [all...]
  /src/sys/arch/prep/prep/
machdep.c 322 struct _L4_Pack *pack = (void *)p; local
323 struct _L4_PPCPack *pa = &pack->L4_Data.L4_PPCPack;
386 struct _L4_Pack *pack = (void *)p; local
387 struct _L4_PPCPack *pa = &pack->L4_Data.L4_PPCPack;
platform.c 151 struct _L4_Pack *pack = v; local
152 struct _L4_PPCPack *p = &pack->L4_Data.L4_PPCPack;
228 struct _L4_Pack *pack = v; local
229 struct _L4_PPCPack *p = &pack->L4_Data.L4_PPCPack;
  /src/sys/sys/
trace.h 38 * File system buffer tracing points; all trace <pack(dev, size), bn>
104 #define pack(v,b) (((v)->v_mount->mnt_stat.f_fsidx.__fsid_val[0])<<16)|(b) macro
  /src/usr.bin/config/
pack.c 1 /* $NetBSD: pack.c,v 1.12 2025/01/07 14:21:11 joe Exp $ */
40 * from: @(#)pack.c 8.1 (Berkeley) 6/6/93
48 __RCSID("$NetBSD: pack.c,v 1.12 2025/01/07 14:21:11 joe Exp $");
59 * First, we pack device instances which have identical parent specs.
61 * Second, we pack locators. Given something like
107 pack(void) function
112 /* Pack instances and make parent vectors. */
129 /* Allocate and pack loc[]. */
136 * Pack device instances together wherever possible.
  /src/usr.bin/fmt/
fmt.c 86 static void pack(const wchar_t *, size_t);
367 pack(cp, (size_t)(buf->ptr - cp));
419 pack(word.bptr, wlen);
433 * Pack a word onto the output line. If this is the beginning of
448 pack(const wchar_t *word, size_t wlen) function
  /src/usr.sbin/mtree/
spec.c 454 pack_t *pack; local
460 if ((pack = pack_find(arg)) == NULL)
475 result = (*pack)(argc, numbers, &error);

Completed in 27 milliseconds

1 2 3