Searched refs:ksize (Results 1 - 25 of 30) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/crypto/
H A Dtestmgr.h37 unsigned char ksize; member in struct:hash_testvec
1013 .ksize = 16,
1031 .ksize = 16,
1038 .ksize = 4,
1047 .ksize = 16,
1059 .ksize = 25,
1069 .ksize = 16,
1082 .ksize = 80,
1095 .ksize = 80,
1112 .ksize
[all...]
H A Dtestmgr.c220 if (template[i].ksize) {
223 template[i].ksize);
297 if (template[i].ksize) {
300 template[i].ksize);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/evp/
H A De_aes.c89 #define IMPLEMENT_AES_CFBR(ksize,cbits) IMPLEMENT_CFBR(aes,AES,EVP_AES_KEY,ks,ksize,cbits,16)
H A De_camellia.c96 #define IMPLEMENT_CAMELLIA_CFBR(ksize,cbits) IMPLEMENT_CFBR(camellia,Camellia,EVP_CAMELLIA_KEY,ks,ksize,cbits,16)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/build_vxworks/test_micro/
H A Db_workload.h14 } else if (config->ksize != 0) { \
16 (key.data = malloc(key.size = config->ksize)) != NULL); \
30 } else if (config->ksize == 0) { \
40 (void)snprintf(key.data, config->ksize, "%10lu", (u_long)i); \
128 size_t ksize; member in struct:__anon6214
H A Db_workload.c69 conf.ksize = atoi(optarg);
151 DB_BENCH_ASSERT(conf.ksize == 0 || conf.orderedkeys == 0);
173 ksz = (conf.orderedkeys != 0) ? sizeof(u_int32_t) : conf.ksize;
219 if (conf.ksize != 0)
220 printf(", key size: %lu", (u_long)conf.ksize);
377 if (config->ksize == 0)
423 else if (config->ksize == 0)
427 "\tInserting keys with size: %lu\n", (u_long)config->ksize);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test_micro/source/
H A Db_workload.h14 } else if (config->ksize != 0) { \
16 (key.data = malloc(key.size = config->ksize)) != NULL); \
30 } else if (config->ksize == 0) { \
40 (void)snprintf(key.data, config->ksize, "%10lu", (u_long)i); \
128 size_t ksize; member in struct:__anon6369
H A Db_workload.c68 conf.ksize = atoi(optarg);
150 DB_BENCH_ASSERT(conf.ksize == 0 || conf.orderedkeys == 0);
172 ksz = (conf.orderedkeys != 0) ? sizeof(u_int32_t) : conf.ksize;
218 if (conf.ksize != 0)
219 printf(", key size: %lu", (u_long)conf.ksize);
376 if (config->ksize == 0)
422 else if (config->ksize == 0)
426 "\tInserting keys with size: %lu\n", (u_long)config->ksize);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/alpha/boot/
H A Dmisc.c153 size_t ksize,
160 free_mem_ptr = (ulg)output_start + ksize;
161 free_mem_end_ptr = (ulg)output_start + ksize + 0x200000;
151 decompress_kernel(void *output_start, void *input_start, size_t ksize, size_t kzsize) argument
H A DMakefile43 $(obj)/main.o: $(obj)/ksize.h
44 $(obj)/bootp.o: $(obj)/ksize.h
47 $(obj)/ksize.h: $(obj)/vmlinux.nh FORCE
H A Dbootpz.c48 size_t ksize, size_t kzsize);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/sched/
H A Dact_pedit.c50 int ksize; local
62 ksize = parm->nkeys * sizeof(struct tc_pedit_key);
63 if (nla_len(tb[TCA_PEDIT_PARMS]) < sizeof(*parm) + ksize)
75 keys = kmalloc(ksize, GFP_KERNEL);
88 keys = kmalloc(ksize, GFP_KERNEL);
102 memcpy(p->tcfp_keys, parm->keys, ksize);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/mm/
H A Dutil.c124 ks = ksize(p);
183 ks = ksize(mem);
H A Dslob.c33 * provide ksize(). These objects are detected in kfree() because slob_page()
539 /* can't use ksize for kmem_cache_alloc memory, only kmalloc */
540 size_t ksize(const void *block) function
556 EXPORT_SYMBOL(ksize); variable
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/microblaze/mm/
H A Dinit.c269 unsigned int kstart, ksize; local
294 ksize = PAGE_ALIGN(((u32)_end - (u32)CONFIG_KERNEL_START));
295 memblock_reserve(kstart, ksize);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/security/tomoyo/
H A Dmemory.c48 size_t s = ptr ? ksize(ptr) : 0;
88 atomic_sub(ksize(ptr), &tomoyo_policy_memory_size);
173 allocated_len = ptr ? ksize(ptr) : 0;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/crypto/
H A Dpadlock-aes.c46 ksize:2; member in struct:cword
135 ctx->cword.encrypt.ksize = (key_len - 16) / 8;
136 ctx->cword.decrypt.ksize = ctx->cword.encrypt.ksize;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dslab.h137 size_t ksize(const void *);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/engines/
H A De_padlock.c280 int ksize:2; member in struct:__anon4990::__anon4991
694 # define DECLARE_AES_EVP(ksize,lmode,umode) \
695 static const EVP_CIPHER padlock_aes_##ksize##_##lmode = { \
696 NID_aes_##ksize##_##lmode, \
698 AES_KEY_SIZE_##ksize, \
806 cdata->cword.b.ksize = (key_len - 128) / 64;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/engines/
H A De_padlock.c280 int ksize:2; member in struct:__anon4641::__anon4642
694 # define DECLARE_AES_EVP(ksize,lmode,umode) \
695 static const EVP_CIPHER padlock_aes_##ksize##_##lmode = { \
696 NID_aes_##ksize##_##lmode, \
698 AES_KEY_SIZE_##ksize, \
806 cdata->cword.b.ksize = (key_len - 128) / 64;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/engine/
H A Deng_padlock.c266 int ksize:2; member in struct:padlock_cipher_data::__anon7120::__anon7121
684 #define DECLARE_AES_EVP(ksize,lmode,umode) \
685 static const EVP_CIPHER padlock_aes_##ksize##_##lmode = { \
686 NID_aes_##ksize##_##lmode, \
688 AES_KEY_SIZE_##ksize, \
794 cdata->cword.b.ksize = (key_len - 128) / 64;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/avahi-0.6.25/avahi-gobject/
H A Dga-entry-group.c274 static void _set_entry(GHashTable * table, const guint8 * key, gsize ksize, argument
277 g_hash_table_insert(table, _new_entry(key, ksize),
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/avahi-0.6.25/avahi-gobject/
H A Dga-entry-group.c274 static void _set_entry(GHashTable * table, const guint8 * key, gsize ksize, argument
277 g_hash_table_insert(table, _new_entry(key, ksize),
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/hash/
H A Dhash_page.c482 u_int32_t ksize, dsize, increase, distance; local
489 ksize = (key_type == H_OFFPAGE) ?
493 increase = ksize + dsize;
510 inp[indx] = HOFFSET(p) - ksize;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/wireless/
H A Dscan.c437 ksize(found) >= used + ielen) {
470 ksize(found) >= used + ielen) {

Completed in 313 milliseconds

12