Home
last modified time | relevance | path

Searched full:pack (Results 1 – 25 of 793) sorted by relevance

12345678910>>...32

/freebsd/crypto/openssl/crypto/modes/
H A Dgcm128.c30 #define PACK(s) ((size_t)(s)<<(sizeof(size_t)*8-16)) macro
111 PACK(0x0000), PACK(0x01C2), PACK(0x0384), PACK(0x0246), in gcm_gmult_8bit()
112 PACK(0x0708), PACK(0x06CA), PACK(0x048C), PACK(0x054E), in gcm_gmult_8bit()
113 PACK(0x0E10), PACK(0x0FD2), PACK(0x0D94), PACK(0x0C56), in gcm_gmult_8bit()
114 PACK(0x0918), PACK(0x08DA), PACK(0x0A9C), PACK(0x0B5E), in gcm_gmult_8bit()
115 PACK(0x1C20), PACK(0x1DE2), PACK(0x1FA4), PACK(0x1E66), in gcm_gmult_8bit()
116 PACK(0x1B28), PACK(0x1AEA), PACK(0x18AC), PACK(0x196E), in gcm_gmult_8bit()
117 PACK(0x1230), PACK(0x13F2), PACK(0x11B4), PACK(0x1076), in gcm_gmult_8bit()
118 PACK(0x1538), PACK(0x14FA), PACK(0x16BC), PACK(0x177E), in gcm_gmult_8bit()
119 PACK(0x3840), PACK(0x3982), PACK(0x3BC4), PACK(0x3A06), in gcm_gmult_8bit()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateVariadic.cpp46 // could have reached a dependent parameter pack. in addUnexpanded()
116 /// elements that are pack expansions.
167 // A function parameter pack is a pack expansion, so cannot contain in TraverseDecl()
168 // an unexpanded parameter pack. Likewise for a template parameter in TraverseDecl()
169 // pack that contains any references to other packs. in TraverseDecl()
176 /// Suppress traversal of pack-expanded attributes.
184 /// Suppress traversal of pack expansion expressions and types.
202 /// Suppress traversal of using-declaration pack expansion.
210 /// Suppress traversal of using-declaration pack expansion.
218 /// Suppress traversal of template argument pack expansions.
[all …]
H A DSemaTemplateDeduction.cpp364 case TemplateArgument::Pack: { in checkDeducedTemplateArguments()
365 if (Y.getKind() != TemplateArgument::Pack || in checkDeducedTemplateArguments()
424 // expanded NTTP should be a pack expansion type? in DeduceNonTypeTemplateArgument()
810 /// A pack that we're currently deducing.
812 // The index of the pack.
815 // The old value of the pack before we started deducing it.
818 // A deferred value of this pack from an inner deduction, that couldn't be
822 // The new value of the pack.
825 // The outer deduction for this pack, if any.
833 /// A scope in which we're performing pack deduction.
[all …]
H A DSemaTemplateInstantiate.cpp347 // template <class... Pack> struct S { in HandleFunctionTemplateDecl()
350 // template <class... Pack> template <class T> in HandleFunctionTemplateDecl()
352 // They're of kind TemplateArgument::Pack, not of in HandleFunctionTemplateDecl()
354 // void S<Pack...>::foo() {} in HandleFunctionTemplateDecl()
360 // for unexpanded parameters should be of a Pack kind. in HandleFunctionTemplateDecl()
1384 std::optional<unsigned> getPackIndex(TemplateArgument Pack) { in getPackIndex() argument
1388 return Pack.pack_size() - 1 - Index; in getPackIndex()
1404 void ExpandingFunctionParameterPack(ParmVarDecl *Pack) { in ExpandingFunctionParameterPack() argument
1405 SemaRef.CurrentInstantiationScope->MakeInstantiatedLocalArgPack(Pack); in ExpandingFunctionParameterPack()
1457 "should only have multiple expansions for a pack"); in transformedLocalDecl()
[all …]
/freebsd/contrib/file/magic/Magdir/
H A Dpack2 # $File: pack,v 1.1 2024/08/30 17:29:28 christos Exp $
3 # file(1) magic for things that have PACK as magic
5 0 string PACK
6 # Type: Git pack
10 # reference: https://github.com/git/git/blob/master/Documentation/technical/pack-format.txt
11 # The actual magic is 'PACK', but that clashes with Doom/Quake packs. However,
12 # those have a little-endian offset immediately following the magic 'PACK',
13 # the first byte of which is never 0, while the first byte of the Git pack
22 >>9 default x Git pack
24 !:ext pack
[all …]
/freebsd/contrib/lib9p/pytest/
H A Dsequencer.py31 All provide a pack() and unpack(). The pack() function
33 function apack() that returns a list of struct.pack() bytes,
34 and pack() just joins them up as needed.
36 The pack/unpack functions take a dictionary of variable names
88 def pack(self, vdict, cdict, val): member in EncDec
111 compat hack. The output of e.pack is <type 'bytes'>; b2s
117 >>> e.b2s(e.pack({}, {}, 0))
119 >>> e.b2s(e.pack({}, {}, 256))
124 >>> e.pack({}, {}, None)
128 >>> e.pack({}, {}, -1)
[all …]
H A Dprotocol.py55 unpackers in each protocol (see {pack,unpack}_wirestat below).
95 Protocol instances have a pack() method that encodes a set of
96 arguments into a packet. To know what to encode, pack() must
104 >>> pkt = dotu.pack(fcall='Tversion', args=args)
130 >>> pkt = dotu.pack(fcall='Tversion', args=args)
136 >>> pkt2 = dotu.pack(fcall=td.Tversion, args=args)
141 the appropriate PFOD. In this case pack() finds the type from
145 >>> pkt2 = dotu.pack(rrd.Tversion(tag=99, msize=1000))
169 pkt = protocol.plain.pack(fcall='Rerror',
173 pkt = proto.pack(fcall='Rversion', args={'tag': tag, 'msize': msize})
[all …]
/freebsd/share/examples/ppp/
H A Dlogin-auth49 pack .l.prompt -side left;
53 pack .l.value -side right;
55 pack .l -side top -padx $fxpad -pady $fypad;
60 pack .p.prompt -side left;
63 pack .p.value -side right;
66 pack .p -side top -padx $fxpad -pady $fypad;
70 pack .b.ok -side left;
72 pack .b.cancel -side right;
73 pack .b -side top -padx $fxpad -pady $fypad;
H A Dchap-auth52 pack .$n.prompt -side left;
62 pack .$n.value -side right;
70 pack .$n -side top -padx $fxpad -pady $fypad;
86 pack .k.value -side right;
89 pack .k -side top -padx $fxpad -pady $fypad;
93 pack .b.ok -side left;
95 pack .b.cancel -side right;
96 pack .b -side top -padx $fxpad -pady $fypad;
/freebsd/contrib/ofed/opensm/include/opensm/
H A Dosm_db_pack.h36 /****h* OpenSM/DB-Pack
66 /****f* OpenSM: DB-Pack/osm_db_guid2lid_init
94 /****f* OpenSM: DB-Pack/osm_db_guid2lid_init
116 /****f* OpenSM: DB-Pack/osm_db_guid2lid_guids
146 /****f* OpenSM: DB-Pack/osm_db_guid2lid_get
179 /****f* OpenSM: DB-Pack/osm_db_guid2lid_set
212 /****f* OpenSM: DB-Pack/osm_db_guid2lid_delete
238 /****f* OpenSM: DB-Pack/osm_db_guid2mkey_init
266 /****f* OpenSM: DB-Pack/osm_db_guid2mkey_guids
296 /****f* OpenSM: DB-Pack/osm_db_guid2mkey_get
[all …]
/freebsd/crypto/openssl/util/perl/TLSProxy/
H A DServerHello.pm15 my $hrrrandom = pack("C*", 0xCF, 0x21, 0xAD, 0x74, 0xE5, 0x9A, 0x61, 0x11, 0xBE,
145 $data = pack('n', $self->server_version);
147 $data .= pack('C', $self->session_id_len);
149 $data .= pack('n', $self->ciphersuite);
150 $data .= pack('C', $self->comp_meth);
154 $extensions .= pack("n", $key);
155 $extensions .= pack("n", length($extdata));
158 $extensions .= pack("n", $key);
159 $extensions .= pack("n", length($extdata));
164 $data .= pack('n', length($extensions));
H A DClientHello.pm124 $extension .= pack("n", $key);
125 $extension .= pack("n", length($extdata));
137 $data = pack('n', $self->client_version);
139 $data .= pack('C', $self->session_id_len);
141 $data .= pack('n', $self->ciphersuite_len);
142 $data .= pack("n*", @{$self->ciphersuites});
143 $data .= pack('C', $self->comp_meth_len);
144 $data .= pack("C*", @{$self->comp_meths});
161 $data .= pack('n', length($extensions));
H A DCertificate.pm138 $extensions .= pack("n", $key);
139 $extensions .= pack("n", length($extdata));
142 $data = pack('C', length($self->context()));
149 $data .= pack('Cn', $hi, $certlistlen);
152 $data .= pack('Cn', $hi, $certlen);
153 $data .= pack('n', length($extensions));
162 $data .= pack('Cn', $hi, $certlistlen);
165 $data .= pack('Cn', $hi, $certlen);
/freebsd/crypto/openssl/test/recipes/
H A D70-test_key_share.t329 $suppgroups = pack "C8",
335 $suppgroups = pack "C6",
342 $ext = pack "C2",
345 $ext = pack "C12",
352 $ext = pack "C11H64",
361 $suppgroups = pack "C4",
365 $ext = pack "C6H64C1",
373 $ext = pack "C8",
379 $ext = pack "C10H64",
388 $ext = pack "C6H64C1",
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DTemplateBase.h95 /// The template argument is a pack expansion of a template name that was
105 /// The template argument is actually a parameter pack. Arguments are stored
107 Pack
238 /// Construct a template argument that is a template pack expansion.
274 /// Construct a template argument that is a template argument pack.
279 this->Args.Kind = Pack;
289 /// Create a new template argument pack by copying the given set of
312 /// parameter pack.
315 /// Determine whether this template argument is a pack expansion.
349 /// is a pack expansion, return the pattern as a template name.
[all …]
H A DDeclTemplate.h85 /// pack.
157 /// the parameters have default arguments or if there is a parameter pack.
168 /// unexpanded parameter pack.
171 /// Determine whether this template parameter list contains a parameter pack.
1179 /// parameter pack, meaning that its type is a pack expansion and we
1183 /// The number of type parameters in an expanded parameter pack.
1268 /// Returns whether this is a parameter pack.
1271 /// Whether this parameter pack is a pack expansion.
1273 /// A template type template parameter pack can be a pack expansion if its
1274 /// type-constraint contains an unexpanded parameter pack.
[all …]
/freebsd/share/doc/usd/22.trofftut/
H A Dtt0254 6 point: Pack my box with five dozen liquor jugs.
57 7 point: Pack my box with five dozen liquor jugs.
60 8 point: Pack my box with five dozen liquor jugs.
63 9 point: Pack my box with five dozen liquor jugs.
66 10 point: Pack my box with five dozen liquor
69 11 point: Pack my box with five dozen
72 12 point: Pack my box with five dozen
75 14 point: Pack my box with five
/freebsd/contrib/ntp/scripts/monitoring/
H A Dntptrap90 bind(S, pack("S n a4 x8", &AF_INET, $opt_p, &INADDR_ANY)) ||
109 &ntp'send(S,31,0,"",pack("Sna4x8",&AF_INET,$ntp_port,$Host{$_})); #';
126 ;# a Request element looks like: pack("a4SC",addr,associd,op)
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)));
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stack_store.cpp40 StackStore::Id StackStore::Store(const StackTrace &trace, uptr *pack) { in Store() argument
45 *pack = 0; in Store()
46 uptr *stack_trace = Alloc(h.size + 1, &idx, pack); in Store()
52 *pack += blocks_[GetBlockIdx(idx)].Stored(h.size + 1);
74 uptr *StackStore::Alloc(uptr count, uptr *idx, uptr *pack) { in Alloc()
94 // Pack().
95 *pack += blocks_[block_idx].Stored(in_first); in Map()
96 *pack += blocks_[last_idx].Stored(count - in_first); in Map()
110 uptr StackStore::Pack(Compression type) {
112 for (BlockInfo &b : blocks_) res += b.Pack(typ in LockAll()
71 Alloc(uptr count,uptr * idx,uptr * pack) Alloc() argument
105 uptr StackStore::Pack(Compression type) { Pack() function in __sanitizer::StackStore
301 uptr StackStore::BlockInfo::Pack(Compression type, StackStore *store) { Pack() function in __sanitizer::StackStore::BlockInfo
[all...]
H A Dsanitizer_stack_store.h39 uptr *pack /* number of blocks completed by this call */);
47 uptr Pack(Compression type);
76 uptr *Alloc(uptr count, uptr *idx, uptr *pack);
90 // Counter to track store progress to know when we can Pack() the block.
108 uptr Pack(Compression type, StackStore *store);
/freebsd/tests/sys/cddl/zfs/tests/acl/trivial/
H A Dzfs_acl_pack_001_pos.ksh36 # Verifies that pack will keep file attribute intact afterthe file is
41 # 2. Save all files and their attribute files cksum value, then pack
59 log_assert "Verifies that pack will keep file attribute intact after the file "\
76 log_must eval "usr_exec $PACK -f $INI_DIR/* > /dev/null 2>&1"
87 log_pass "pack/unpack test passed."
/freebsd/sys/dev/tws/
H A Dtws_user.h49 #pragma pack(1)
95 #pragma pack()
97 #pragma pack(1)
113 #pragma pack()
117 #pragma pack(1)
131 #pragma pack()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DTemplate.h394 /// For a parameter pack, the local instantiation scope may contain a
414 /// If non-NULL, the template parameter pack that has been
419 /// explicitly-specified template arguments in that pack.
512 /// \returns A pointer to the declaration or argument pack of declarations
522 /// Note that the given parameter pack has been partially substituted
526 /// \param Pack The parameter pack, which will always be a template
527 /// parameter pack.
530 /// for this parameter pack.
533 /// arguments provided for this parameter pack.
534 void SetPartiallySubstitutedPack(NamedDecl *Pack,
[all …]
/freebsd/contrib/libarchive/tar/test/
H A Dtest_option_safe_writes.c24 ">pack.out 2>pack.err", testprog)); in DEFINE_TEST()
27 assertEmptyFile("pack.err"); in DEFINE_TEST()
28 assertEmptyFile("pack.out"); in DEFINE_TEST()
/freebsd/sys/contrib/libsodium/src/libsodium/include/sodium/
H A Dcrypto_generichash_blake2b.h18 # pragma pack(1)
20 # pragma pack(push, 1)
33 # pragma pack()
35 # pragma pack(pop)

12345678910>>...32