| /netbsd-src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/gr/ |
| H A D | nouveau_nvkm_engine_gr_gk20a.c | 48 struct gf100_gr_pack *pack; in gk20a_gr_av_to_init() local 58 pack = vzalloc((sizeof(*pack) * 2) + (sizeof(*init) * (nent + 1))); in gk20a_gr_av_to_init() 59 if (!pack) { in gk20a_gr_av_to_init() 64 init = (void *)(pack + 2); in gk20a_gr_av_to_init() 65 pack[0].init = init; in gk20a_gr_av_to_init() 77 *ppack = pack; in gk20a_gr_av_to_init() 98 struct gf100_gr_pack *pack; in gk20a_gr_aiv_to_init() local 108 pack = vzalloc((sizeof(*pack) * 2) + (sizeof(*init) * (nent + 1))); in gk20a_gr_aiv_to_init() 109 if (!pack) { in gk20a_gr_aiv_to_init() 114 init = (void *)(pack + 2); in gk20a_gr_aiv_to_init() [all …]
|
| /netbsd-src/games/rogue/ |
| H A D | pack.c | 66 add_to_pack(object *obj, object *pack, int condense) in add_to_pack() argument 71 if ((op = check_duplicate(obj, pack)) != NULL) { in add_to_pack() 78 if (pack->next_object == 0) { in add_to_pack() 79 pack->next_object = obj; in add_to_pack() 81 op = pack->next_object; in add_to_pack() 93 take_from_pack(object *obj, object *pack) in take_from_pack() argument 95 while (pack->next_object != obj) { in take_from_pack() 96 pack = pack->next_object; in take_from_pack() 98 pack->next_object = pack->next_object->next_object; in take_from_pack() 146 obj = add_to_pack(obj, &rogue.pack, 1); in pick_up() [all …]
|
| H A D | save.c | 140 write_pack(&rogue.pack, fp); in save_into_file() 212 read_pack(&rogue.pack, fp, 1); in restore() 255 write_pack(const object *pack, FILE *fp) in write_pack() argument 259 while ((pack = pack->next_object) != NULL) { in write_pack() 260 r_write(fp, pack, sizeof(object)); in write_pack() 267 read_pack(object *pack, FILE *fp, boolean is_rogue) in read_pack() argument 274 pack->next_object = NULL; in read_pack() 289 pack->next_object = new_obj; in read_pack() 290 pack = new_obj; in read_pack()
|
| H A D | init.c | 153 rogue.pack.next_object = NULL; in player_init() 157 (void)add_to_pack(obj, &rogue.pack, 1); in player_init() 165 (void)add_to_pack(obj, &rogue.pack, 1); in player_init() 174 (void)add_to_pack(obj, &rogue.pack, 1); in player_init() 184 (void)add_to_pack(obj, &rogue.pack, 1); in player_init() 194 (void)add_to_pack(obj, &rogue.pack, 1); in player_init()
|
| /netbsd-src/sys/netinet/ |
| H A D | ip_encap.c | 198 struct ip_pack4 pack; in encap4_lookup() local 209 memset(&pack, 0, sizeof(pack)); in encap4_lookup() 210 pack.p.sp_len = sizeof(pack); in encap4_lookup() 211 pack.mine.sin_family = pack.yours.sin_family = AF_INET; in encap4_lookup() 212 pack.mine.sin_len = pack.yours.sin_len = sizeof(struct sockaddr_in); in encap4_lookup() 214 pack.mine.sin_addr = ip->ip_dst; in encap4_lookup() 215 pack.yours.sin_addr = ip->ip_src; in encap4_lookup() 217 pack.mine.sin_addr = ip->ip_src; in encap4_lookup() 218 pack.yours.sin_addr = ip->ip_dst; in encap4_lookup() 226 encap_key_init(&key, sintosa(&pack.mine), sintosa(&pack.yours)); in encap4_lookup() [all …]
|
| /netbsd-src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/therm/ |
| H A D | nouveau_nvkm_subdev_therm_gf100.c | 33 #define pack_for_each_init(init, pack, head) \ argument 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; in gf100_clkgate_init() local 45 pack_for_each_init(init, pack, p) { in gf100_clkgate_init()
|
| /netbsd-src/external/bsd/ntp/dist/scripts/monitoring/ |
| H A D | ntptrap | 109 &ntp'send(S,31,0,"",pack("Sna4x8",&AF_INET,$ntp_port,$Host{$_})); #'; 138 (gethostbyaddr(pack("C4",$1,$2,$3,$4),&AF_INET))[$[,$[+4]; 142 $addr = pack("C4",$1,$2,$3,$4); 157 push(@Requests,pack("a4SC",$addr,0,6)); # schedule a set trap request for $name 201 pack("Sna4x8",&AF_INET,$ntp_port,$addr)); 269 &clear_timeout("retry-".unpack("H*",pack("a4SC",$from,$associd,$op))) unless $op == 7; 270 delete $RETRY{pack("a4SC",$from,$associd,$op)} unless $op == 7; 280 &clear_timeout("retry-".unpack("H*",pack("a4SC",$from,$associd,$op))); 318 $addr = pack("H*",$addr); 320 push(@Requests,pack("a4SC",$addr,0,6)); [all …]
|
| /netbsd-src/sys/arch/prep/pnpbus/ |
| H A D | pnpbus.c | 185 struct _L1_Pack *pack = v; in pnp_newiomem() local 187 if (pack->Count0 >= 0x9) { in pnp_newiomem() 189 mem->minbase = (pack->Data[2] << 16) | (pack->Data[1] << 8); in pnp_newiomem() 190 mem->maxbase = (pack->Data[4] << 16) | (pack->Data[3] << 8); in pnp_newiomem() 191 mem->align = (pack->Data[6] << 8) | pack->Data[5]; in pnp_newiomem() 192 mem->len = (pack->Data[8] << 16) | (pack->Data[7] << 8); in pnp_newiomem() 193 mem->flags = pack->Data[0]; in pnp_newiomem() 206 struct _L4_Pack *pack = v; in pnp_newaddr() local 207 struct _L4_PPCPack *p = &pack->L4_Data.L4_PPCPack; in pnp_newaddr() 292 struct _L4_Pack *pack = v; in pnpbus_scan() local [all …]
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/external/perl/Text-Template-1.46/lib/Text/ |
| H A D | Template.pm | 39 my $pack = shift; 40 my $old = $GLOBAL_PREPEND{$pack}; 41 $GLOBAL_PREPEND{$pack} = shift; 51 my $pack = shift; 61 Carp::croak("Usage: $ {pack}::new(TYPE => ..., SOURCE => ...)"); 79 bless $self => $pack; 120 my $pack = ref $self; 121 die "Can only acquire data for $pack objects of subtype STRING, but this is $type; aborting"; 147 my $pack = ref $self; 150 die "Can only compile $pack objects of subtype STRING, but this is $self->{TYPE}; aborting"; [all …]
|
| /netbsd-src/external/gpl3/binutils.old/dist/cpu/ |
| H A D | frv.cpu | 1921 (dnf f-pack "packing bit" () 31 1) 3042 (name h-pack) 3117 (dnop pack "packing bit" () h-pack f-pack) 3456 (.str name "$pack $GRi,$GRj,$GRk") 3457 (+ pack GRk op GRi (ICCi_1-null) ope GRj) 3474 ("not$pack $GRj,$GRk") 3475 (+ pack GRk OP_01 (rs-null) (ICCi_1-null) OPE2_06 GRj) 3485 "sdiv$pack $GRi,$GRj,$GRk" 3486 (+ pack GRk OP_00 GRi (ICCi_1-null) OPE2_0E GRj) 3499 "nsdiv$pack $GRi,$GRj,$GRk" [all …]
|
| /netbsd-src/external/gpl3/gdb.old/dist/cpu/ |
| H A D | frv.cpu | 1921 (dnf f-pack "packing bit" () 31 1) 3042 (name h-pack) 3117 (dnop pack "packing bit" () h-pack f-pack) 3456 (.str name "$pack $GRi,$GRj,$GRk") 3457 (+ pack GRk op GRi (ICCi_1-null) ope GRj) 3474 ("not$pack $GRj,$GRk") 3475 (+ pack GRk OP_01 (rs-null) (ICCi_1-null) OPE2_06 GRj) 3485 "sdiv$pack $GRi,$GRj,$GRk" 3486 (+ pack GRk OP_00 GRi (ICCi_1-null) OPE2_0E GRj) 3499 "nsdiv$pack $GRi,$GRj,$GRk" [all …]
|
| /netbsd-src/external/gpl3/binutils/dist/cpu/ |
| H A D | frv.cpu | 1921 (dnf f-pack "packing bit" () 31 1) 3042 (name h-pack) 3117 (dnop pack "packing bit" () h-pack f-pack) 3456 (.str name "$pack $GRi,$GRj,$GRk") 3457 (+ pack GRk op GRi (ICCi_1-null) ope GRj) 3474 ("not$pack $GRj,$GRk") 3475 (+ pack GRk OP_01 (rs-null) (ICCi_1-null) OPE2_06 GRj) 3485 "sdiv$pack $GRi,$GRj,$GRk" 3486 (+ pack GRk OP_00 GRi (ICCi_1-null) OPE2_0E GRj) 3499 "nsdiv$pack $GRi,$GRj,$GRk" [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/lib/Text/ |
| H A D | Template.pm | 43 my $pack = shift; 45 my $old = $GLOBAL_PREPEND{$pack}; 47 $GLOBAL_PREPEND{$pack} = shift; 60 my ($pack, %a) = @_; 72 Carp::croak("Usage: $ {pack}::new(TYPE => ..., SOURCE => ...)"); 95 bless $self => $pack; 150 my $pack = ref $self; 151 … die "Can only acquire data for $pack objects of subtype STRING, but this is $type; aborting"; 183 my $pack = ref $self; 187 die "Can only compile $pack objects of subtype STRING, but this is $self->{TYPE}; aborting"; [all …]
|
| /netbsd-src/external/gpl3/gdb/dist/sim/testsuite/frv/interrupts/ |
| H A D | Ipipe-fr500.cgs | 10 ; Clear the packing bit of the insn at 'pack:'. We can't 12 set_gr_mem pack,gr10 14 set_mem_gr gr10,pack 15 set_gr_addr pack,gr10 27 pack: add gr2,gr2,gr2
|
| H A D | Ipipe-fr400.cgs | 10 ; Clear the packing bit of the insn at 'pack:'. We can't 12 set_gr_mem pack,gr10 14 set_mem_gr gr10,pack 15 set_gr_addr pack,gr10 27 pack: add gr2,gr2,gr2
|
| /netbsd-src/external/bsd/file/dist/magic/magdir/ |
| H A D | revision | 16 # Type: Git pack 20 # reference: https://github.com/git/git/blob/master/Documentation/technical/pack-format.txt 23 # the first byte of which is never 0, while the first byte of the Git pack 33 >>9 default x Git pack 35 !:ext pack 40 # Type: Git pack index 42 0 string \377tOc Git pack index
|
| /netbsd-src/external/mpl/bind/dist/bin/tests/system/tsiggss/ |
| H A D | tests_isc_spnego_flaws.py | 73 tkey_rdata += struct.pack(">I", int(time.time()) - 3600) # inception 74 tkey_rdata += struct.pack(">I", int(time.time()) + 86400) # expiration 75 tkey_rdata += struct.pack(">H", 3) # mode 76 tkey_rdata += struct.pack(">H", 0) # error 78 tkey_rdata += struct.pack(">H", 0) # other size 85 return struct.pack(">H", len(data)) + data 157 data_len = struct.pack(">I", len(data) + extra_length)
|
| /netbsd-src/external/bsd/wpa/dist/src/common/ |
| H A D | eapol_common.h | 15 #pragma pack(push, 1) 32 #pragma pack(pop) 61 #pragma pack(push, 1) 89 #pragma pack(pop)
|
| /netbsd-src/sys/compat/linux/arch/amd64/ |
| H A D | linux_exec_machdep.c | 125 ELFNAME2(linux,copyargs)(struct lwp *l, struct exec_package *pack, in ELFNAME2() 138 if ((error = copyargs(l, pack, arginfo, stackp, argp)) != 0) in ELFNAME2() 147 ap = (struct elf_args *)pack->ep_emul_arg; in ELFNAME2() 148 vap = pack->ep_vap; in ELFNAME2() 149 eh = (Elf_Ehdr *)pack->ep_hdr; in ELFNAME2() 157 error = exec_read(l, pack->ep_vp, eh->e_phoff, ph, phsize, 0); in ELFNAME2() 239 exec_free_emul_arg(pack); in ELFNAME2()
|
| /netbsd-src/sys/arch/prep/prep/ |
| H A D | residual.c | 248 struct _L4_Pack *pack = v; in pnp_pci_busno() local 249 struct _L4_PPCPack *p = &pack->L4_Data.L4_PPCPack; in pnp_pci_busno() 273 struct _L4_Pack *pack = v; in pnp_pci_configbase() local 274 struct _L4_PPCPack *p = &pack->L4_Data.L4_PPCPack; in pnp_pci_configbase() 1114 struct _L4_Pack *pack = v; in pnp_large_pkt() local 1115 struct _L4_PPCPack *p = &pack->L4_Data.L4_PPCPack; in pnp_large_pkt() 1124 struct _L1_Pack *pack = v; in pnp_large_pkt() local 1127 if (pack->Data[0] & L1_Shadow) in pnp_large_pkt() 1129 if (pack->Data[0] & L1_32bit_mem) in pnp_large_pkt() 1131 if (pack->Data[0] & L1_8_16bit_mem) in pnp_large_pkt() [all …]
|
| /netbsd-src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/ |
| H A D | crypto_generichash_blake2b.h | 18 # pragma pack(1) 20 # pragma pack(push, 1) 33 # pragma pack() 35 # pragma pack(pop)
|
| /netbsd-src/sys/arch/arm/arm/ |
| H A D | arm_machdep.c | 168 setregs(struct lwp *l, struct exec_package *pack, vaddr_t stack) in setregs() argument 176 tf->tf_usr_lr = pack->ep_entry; in setregs() 178 tf->tf_pc = pack->ep_entry; in setregs() 189 if (pack->ep_entry & 1) in setregs() 195 if (pack->ep_esch->es_makecmds == exec_aout_makecmds) in setregs()
|
| /netbsd-src/sys/compat/linux/arch/powerpc/ |
| H A D | linux_exec_powerpc.c | 65 ELFNAME2(linux,copyargs)(struct lwp *l, struct exec_package *pack, in ELFNAME2() 83 if ((error = copyargs(l, pack, arginfo, stackp, argp)) != 0) in ELFNAME2() 104 if ((ap = (struct elf_args *)pack->ep_emul_arg)) { in ELFNAME2() 165 exec_free_emul_arg(pack); in ELFNAME2()
|
| /netbsd-src/sys/external/isc/libsodium/dist/src/libsodium/crypto_generichash/blake2b/ref/ |
| H A D | blake2.h | 49 #pragma pack(1) 51 #pragma pack(push, 1) 71 #pragma pack() 73 #pragma pack(pop)
|
| /netbsd-src/sys/external/bsd/gnu-efi/dist/inc/ |
| H A D | romload.h | 8 #pragma pack(push) 9 #pragma pack(1) 41 #pragma pack(pop)
|