Home
last modified time | relevance | path

Searched refs:node_offset (Results 1 – 11 of 11) sorted by relevance

/f-stack/freebsd/arm64/acpica/
H A Dacpi_iort.c89 u_int node_offset; /* offset in IORT - node ID */ member
277 iort_add_nodes(ACPI_IORT_NODE *node_entry, u_int node_offset) in iort_add_nodes() argument
286 node->node_offset = node_offset; in iort_add_nodes()
333 if (entry->out_node_offset == np->node_offset) { in iort_resolve_node()
341 if (entry->out_node_offset == np->node_offset) { in iort_resolve_node()
503 u_int node_offset; in acpi_parse_iort() local
514 for (node_offset = iort->NodeOffset; in acpi_parse_iort()
515 node_offset < iort->Header.Length; in acpi_parse_iort()
516 node_offset += node_entry->Length) { in acpi_parse_iort()
517 node_entry = ACPI_ADD_PTR(ACPI_IORT_NODE, iort, node_offset); in acpi_parse_iort()
[all …]
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Dbqueue.c46 size_t node_offset) in bqueue_init() argument
51 list_create(&q->bq_list, node_offset + sizeof (bqueue_node_t), in bqueue_init()
52 node_offset + offsetof(bqueue_node_t, bqn_node)); in bqueue_init()
56 q->bq_node_offset = node_offset; in bqueue_init()
/f-stack/freebsd/contrib/libb2/
H A Dblake2s-ref.c102 static inline int blake2s_param_set_node_offset( blake2s_param *P, const uint64_t node_offset ) in blake2s_param_set_node_offset() argument
104 store48( P->node_offset, node_offset ); in blake2s_param_set_node_offset()
189 store48( &P->node_offset, 0 ); in blake2s_init()
211 store48( &P->node_offset, 0 ); in blake2s_init_key()
H A Dblake2b-ref.c109 static inline int blake2b_param_set_node_offset( blake2b_param *P, const uint64_t node_offset ) in blake2b_param_set_node_offset() argument
111 store64( &P->node_offset, node_offset ); in blake2b_param_set_node_offset()
195 store64( &P->node_offset, 0 ); in blake2b_init()
218 store64( &P->node_offset, 0 ); in blake2b_init_key()
H A Dblake2.h78 uint8_t node_offset[6];// 14 member
104 uint64_t node_offset; // 16 member
H A Dblake2s.c139 static inline int blake2s_param_set_node_offset( blake2s_param *P, const uint64_t node_offset ) in blake2s_param_set_node_offset() argument
141 store48( P->node_offset, node_offset ); in blake2s_param_set_node_offset()
H A Dblake2b.c151 static inline int blake2b_param_set_node_offset( blake2b_param *P, const uint64_t node_offset ) in blake2b_param_set_node_offset() argument
153 P->node_offset = node_offset; in blake2b_param_set_node_offset()
H A Dblake2sp.c35 store48( P->node_offset, offset ); in blake2sp_init_leaf()
53 store48( P->node_offset, 0ULL ); in blake2sp_init_root()
H A Dblake2bp.c36 store64(&P->node_offset, offset); in blake2bp_init_leaf()
55 store64(&P->node_offset, 0); in blake2bp_init_root()
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_generichash/blake2b/ref/
H A Dblake2b-ref.c136 STORE64_LE(P->node_offset, 0); in blake2b_init()
159 STORE64_LE(P->node_offset, 0); in blake2b_init_salt_personal()
193 STORE64_LE(P->node_offset, 0); in blake2b_init_key()
231 STORE64_LE(P->node_offset, 0); in blake2b_init_key_salt_personal()
H A Dblake2.h60 uint8_t node_offset[8]; /* 16 */ member