Searched refs:order (Results 51 - 75 of 313) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/wpa/src/crypto/
H A Dcrypto_internal-modexp.c43 const u8 *order, size_t order_len,
61 if (order) {
71 bignum_set_unsigned_bin(q, order, order_len) < 0 ||
42 crypto_dh_derive_secret(u8 generator, const u8 *prime, size_t prime_len, const u8 *order, size_t order_len, const u8 *privkey, size_t privkey_len, const u8 *pubkey, size_t pubkey_len, u8 *secret, size_t *len) argument
/freebsd-11-stable/contrib/gcc/
H A Dipa-utils.c52 struct cgraph_node** order,
59 dump_cgraph_node(dump_file, order[i]);
159 ipa_utils_reduced_inorder (struct cgraph_node **order,
167 env.result = order;
50 ipa_utils_print_order(FILE* out, const char * note, struct cgraph_node** order, int count) argument
158 ipa_utils_reduced_inorder(struct cgraph_node **order, bool reduce, bool allow_overwritable) argument
H A Dcgraph.h151 int order; local
210 int order; local
240 int order; local
/freebsd-11-stable/cddl/usr.sbin/dtrace/tests/common/struct/
H A DMakefile14 err.D_DECL_INCOMPLETE.order.d \
/freebsd-11-stable/sys/dev/bhnd/
H A Dbhndvar.h76 device_t bhnd_generic_add_child(device_t dev, u_int order,
/freebsd-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Dmm.h150 int order; local
153 order = 0;
155 order++;
158 return (order);
H A Dbitops.h106 int order; local
108 order = fls(count) - 1;
110 order++;
111 return order;
345 linux_reg_op(unsigned long *bitmap, int pos, int order, int reg_op) argument
356 nbits_reg = 1 << order;
/freebsd-11-stable/sys/compat/linuxkpi/common/src/
H A Dlinux_page.c96 linux_alloc_pages(gfp_t flags, unsigned int order) argument
99 unsigned long npages = 1UL << order;
104 if (order == 0 && (flags & GFP_DMA32) == 0) {
141 vaddr = linux_alloc_kmem(flags, order);
154 linux_free_pages(vm_page_t page, unsigned int order) argument
157 unsigned long npages = 1UL << order;
172 linux_free_kmem(vaddr, order);
177 linux_alloc_kmem(gfp_t flags, unsigned int order) argument
179 size_t size = ((size_t)PAGE_SIZE) << order;
193 linux_free_kmem(vm_offset_t addr, unsigned int order) argument
[all...]
/freebsd-11-stable/crypto/openssl/crypto/ec/
H A Deck_prn.c152 *order = NULL, *cofactor = NULL; local
204 (b = BN_new()) == NULL || (order = BN_new()) == NULL ||
228 if (!EC_GROUP_get_order(x, order, NULL) ||
248 if (buf_len < (i = (size_t)BN_num_bytes(order)))
309 if ((order != NULL) && !ASN1_bn_print(bp, "Order: ", order,
330 if (order)
331 BN_free(order);
H A Dec_lib.c104 BN_init(&ret->order);
137 BN_free(&group->order);
163 BN_clear_free(&group->order);
235 if (!BN_copy(&dest->order, &src->order))
298 * Try computing cofactor from the generator order (n) and field cardinality (q).
319 if (BN_num_bits(&group->order) <= (BN_num_bits(&group->field) + 1) / 2 + 3) {
344 if (!BN_rshift1(&group->cofactor, &group->order) /* n/2 */
349 || !BN_div(&group->cofactor, NULL, &group->cofactor, &group->order, ctx))
359 const BIGNUM *order, cons
358 EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, const BIGNUM *order, const BIGNUM *cofactor) argument
445 EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DAccelTable.h119 return order() < Other.order();
129 virtual uint64_t order() const = 0;
267 uint64_t order() const override { return Die.getOffset(); }
291 uint64_t order() const override { return DieOffset; }
334 uint64_t order() const override { return Die.getOffset(); }
371 uint64_t order() const override { return Offset; }
398 uint64_t order() const override { return Offset; }
/freebsd-11-stable/crypto/openssl/crypto/ecdsa/
H A Decs_lib.c231 BIGNUM *order = NULL; local
241 if ((order = BN_new()) == NULL)
243 if (!EC_GROUP_get_order(group, order, NULL)) {
244 BN_clear_free(order);
247 i = BN_num_bits(order);
257 BN_clear_free(order);
/freebsd-11-stable/sys/dev/mthca/
H A Dmthca_mr.c43 int order; member in struct:mthca_mtt
84 static u32 mthca_buddy_alloc(struct mthca_buddy *buddy, int order) argument
92 for (o = order; o <= buddy->max_order; ++o)
107 while (o > order) {
116 seg <<= order; local
121 static void mthca_buddy_free(struct mthca_buddy *buddy, u32 seg, int order) argument
123 seg >>= order; local
127 while (test_bit(seg ^ 1, buddy->bits[order])) {
128 clear_bit(seg ^ 1, buddy->bits[order]);
129 --buddy->num_free[order];
190 mthca_alloc_mtt_range(struct mthca_dev *dev, int order, struct mthca_buddy *buddy) argument
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Ddoublest.c50 get_field (unsigned char *data, enum floatformat_byteorders order, argument
58 if (order == floatformat_little || order == floatformat_littlebyte_bigword)
84 if (order == floatformat_little || order == floatformat_littlebyte_bigword)
94 if (order == floatformat_little || order == floatformat_littlebyte_bigword)
124 source bytes that is in the right order since the unpacking
226 put_field (unsigned char *data, enum floatformat_byteorders order,
234 if (order
225 put_field(unsigned char *data, enum floatformat_byteorders order, unsigned int total_len, unsigned int start, unsigned int len, unsigned long stuff_to_put) argument
[all...]
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/db/
H A Dt_db.sh379 atf_set "descr" "Checks recno database using reverse order entries"
417 atf_set "descr" "Checks recno database using alternating order entries"
703 atf_set "descr" "Checks reverse order inserts in recno database"
774 for order in 1234 4321; do
784 atf_check -o file:exp "$(prog_db)" -ilorder=$order -f byte.file $type in
791 atf_check -o file:exp "$(prog_db)" -s -ilorder=$order -f byte.file $type in
996 # Insert keys in reverse order to maximize the chances
1025 # The order of operations here relies on very specific knowledge of
1026 # the internals of the btree access method in order to place records
1196 for order i
[all...]
/freebsd-11-stable/libexec/ypxfr/
H A Dypxfr_misc.c90 return ("No local order number in map -- use -f flag");
110 * an NIS client in order to be an NIS server).
196 unsigned int order; local
198 if ((res = yp_order(domain, map, &order))) {
213 return(order);
/freebsd-11-stable/sys/dev/spibus/
H A Dofw_spibus.c59 static device_t ofw_spibus_add_child(device_t dev, u_int order,
140 ofw_spibus_add_child(device_t dev, u_int order, const char *name, int unit) argument
145 child = device_add_child_ordered(dev, order, name, unit);
/freebsd-11-stable/sys/x86/x86/
H A Dlegacy.c74 static device_t legacy_add_child(device_t bus, u_int order, const char *name,
180 legacy_add_child(device_t bus, u_int order, const char *name, int unit) argument
193 child = device_add_child_ordered(bus, order, name, unit);
258 static device_t cpu_add_child(device_t bus, u_int order, const char *name,
308 * Attach a cpuX device for each CPU. We use an order of 150
310 * bridges (which are added at order 100).
320 cpu_add_child(device_t bus, u_int order, const char *name, int unit) argument
333 child = device_add_child_ordered(bus, order, name, unit);
/freebsd-11-stable/crypto/openssl/apps/
H A Ds_socket.c74 * With IPv6, it looks like Digital has mixed up the proper order of
515 unsigned long order; member in struct:ghbn_cache_st
528 if (low > ghbn_cache[i].order) {
529 low = ghbn_cache[i].order;
532 if (ghbn_cache[i].order > 0) {
547 ghbn_cache[lowi].order = ghbn_miss + ghbn_hits;
553 ghbn_cache[i].order = ghbn_miss + ghbn_hits;
/freebsd-11-stable/contrib/gcc/config/arm/
H A Dlib1funcs.asm428 .macro ARM_DIV2_ORDER divisor, order
432 clz \order, \divisor
433 rsb \order, \order, #31
439 movhs \order, #16
440 movlo \order, #0
444 addhs \order, \order, #8
448 addhs \order, \order, #
[all...]
/freebsd-11-stable/usr.bin/bmake/unit-tests/
H A DMakefile54 order \
76 flags.order=-j1
/freebsd-11-stable/crypto/openssl/crypto/objects/
H A Dobjects.pl16 { die "$ARGV[1]:$o:There's already an object with NID ",$mynum," on line ",$order{$mynum},"\n"; }
18 { die "$ARGV[1]:$o:There's already an object with name ",$Cname," on line ",$order{$nid{$Cname}},"\n"; }
21 $order{$mynum} = $o;
50 $order{$Cname} = $o;
76 { die "objects.txt:$o:There's already an object with long name ",$ln{$module.$Cname}," on line ",$order{$module.$Cname},"\n"; }
83 { die "objects.txt:$o:There's already an object with short name ",$sn{$module.$Cname}," on line ",$order{$module.$Cname},"\n"; }
92 { die "objects.txt:$o:There's already an object with long name ",$ln{$module.$Cname}," on line ",$order{$module.$Cname},"\n"; }
98 $order{$Cname} = $o;
/freebsd-11-stable/sys/dev/mlx4/mlx4_core/
H A Dmlx4_icm.c98 static int mlx4_alloc_icm_pages(struct scatterlist *mem, int order, argument
103 page = alloc_pages_node(node, gfp_mask, order);
105 page = alloc_pages(gfp_mask, order);
110 sg_set_page(mem, page, PAGE_SIZE << order, 0);
115 int order, gfp_t gfp_mask)
117 void *buf = dma_alloc_coherent(dev, PAGE_SIZE << order,
122 sg_set_buf(mem, buf, PAGE_SIZE << order);
124 sg_dma_len(mem) = PAGE_SIZE << order;
114 mlx4_alloc_icm_coherent(struct device *dev, struct scatterlist *mem, int order, gfp_t gfp_mask) argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfData.inc325 * Do byte swap for this instance. \c Old is the original order before
326 * the swap, and \c New is the New byte order.
378 * data is assumed to be in little endian order.
385 * Swap byte order from \c Endianness order to host byte order.
389 * Swap byte order from host byte order to \c Endianness order.
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/profile/
H A DInstrProfData.inc325 * Do byte swap for this instance. \c Old is the original order before
326 * the swap, and \c New is the New byte order.
378 * data is assumed to be in little endian order.
385 * Swap byte order from \c Endianness order to host byte order.
389 * Swap byte order from host byte order to \c Endianness order.

Completed in 396 milliseconds

1234567891011>>