OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:n_block
(Results
1 - 4
of
4
) sorted by null
/external/bluetooth/bluedroid/stack/smp/
aes.h
55
#define
N_BLOCK
(N_ROW * N_COL)
69
{ uint_8t ksch[(N_MAX_ROUNDS + 1) *
N_BLOCK
];
90
return_type aes_encrypt( const unsigned char in[
N_BLOCK
],
91
unsigned char out[
N_BLOCK
],
96
int
n_block
,
97
unsigned char iv[
N_BLOCK
],
103
return_type aes_decrypt( const unsigned char in[
N_BLOCK
],
104
unsigned char out[
N_BLOCK
],
109
int
n_block
,
110
unsigned char iv[
N_BLOCK
],
[
all
...]
aes.c
301
# define block_copy(d, s) memcpy(d, s,
N_BLOCK
)
399
static void add_round_key( uint_8t d[
N_BLOCK
], const uint_8t k[
N_BLOCK
] )
404
static void shift_sub_rows( uint_8t st[
N_BLOCK
] )
420
static void inv_shift_sub_rows( uint_8t st[
N_BLOCK
] )
437
static void mix_sub_columns( uint_8t dt[
N_BLOCK
] )
438
{ uint_8t st[
N_BLOCK
];
441
static void mix_sub_columns( uint_8t dt[
N_BLOCK
], uint_8t st[
N_BLOCK
] )
466
static void inv_mix_sub_columns( uint_8t dt[
N_BLOCK
] )
[
all
...]
/external/kernel-headers/original/linux/
ata.h
357
static inline int lba_28_ok(u64 block, u32
n_block
)
360
return ((block +
n_block
- 1) < ((u64)1 << 28)) && (
n_block
<= 256);
363
static inline int lba_48_ok(u64 block, u32
n_block
)
366
return ((block +
n_block
- 1) < ((u64)1 << 48)) && (
n_block
<= 65536);
/external/chromium_org/third_party/libxml/src/
testapi.c
37305
int
n_block
;
local
[
all
...]
Completed in 2278 milliseconds