Searched refs:_dst (Results 1 – 4 of 4) sorted by relevance
/u-boot/board/gdsys/a38x/ |
A D | hre.c | 299 static void *compute_and(void *_dst, const void *_src, size_t n) in compute_and() argument 301 uint8_t *dst = _dst; in compute_and() 308 return _dst; in compute_and() 311 static void *compute_or(void *_dst, const void *_src, size_t n) in compute_or() argument 313 uint8_t *dst = _dst; in compute_or() 320 return _dst; in compute_or() 325 uint8_t *dst = _dst; in compute_xor() 332 return _dst; in compute_xor() 341 sha1_update(&ctx, _dst, n); in compute_extend() 344 memcpy(_dst, digest, min(n, sizeof(digest))); in compute_extend() [all …]
|
/u-boot/board/gdsys/p1022/ |
A D | controlcenterd-id.c | 543 static void *compute_and(void *_dst, const void *_src, size_t n) in compute_and() argument 545 uint8_t *dst = _dst; in compute_and() 552 return _dst; in compute_and() 555 static void *compute_or(void *_dst, const void *_src, size_t n) in compute_or() argument 557 uint8_t *dst = _dst; in compute_or() 564 return _dst; in compute_or() 569 uint8_t *dst = _dst; in compute_xor() 576 return _dst; in compute_xor() 585 sha1_update(&ctx, _dst, n); in compute_extend() 588 memcpy(_dst, digest, min(n, sizeof(digest))); in compute_extend() [all …]
|
/u-boot/drivers/clk/at91/ |
A D | sam9x60.c | 365 #define prepare_mux_table(_allocs, _index, _dst, _src, _num, _label) \ argument 368 (_dst) = kzalloc(sizeof(*(_dst)) * (_num), GFP_KERNEL); \ 369 if (!(_dst)) { \ 373 (_allocs)[(_index)++] = (_dst); \ 375 (_dst)[_i] = (_src)[_i]; \
|
A D | sama7g5.c | 1095 #define prepare_mux_table(_allocs, _index, _dst, _src, _num, _label) \ argument 1103 (_dst) = kzalloc(sizeof(*(_dst)) * (_num), GFP_KERNEL); \ 1104 if (!(_dst)) \ 1106 (_allocs)[(_index)++] = (_dst); \ 1108 (_dst)[_i] = (_src)[_i]; \
|
Completed in 9 milliseconds