Home
last modified time | relevance | path

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

12

/third_party/uboot/u-boot-2020.01/drivers/usb/common/
Dfsl-dt-fixup.c36 int *node_offset, const char **node_type) in fdt_usb_get_node_type() argument
42 *node_offset = fdt_node_offset_by_compatible in fdt_usb_get_node_type()
45 if (*node_offset >= 0) { in fdt_usb_get_node_type()
61 int node_offset; in fdt_fixup_usb_mode_phy_type() local
65 &node_offset, &node_type); in fdt_fixup_usb_mode_phy_type()
70 err = fdt_setprop(blob, node_offset, prop_mode, mode, in fdt_fixup_usb_mode_phy_type()
78 err = fdt_setprop(blob, node_offset, prop_type, phy_type, in fdt_fixup_usb_mode_phy_type()
85 return node_offset; in fdt_fixup_usb_mode_phy_type()
92 int node_offset, err; in fsl_fdt_fixup_usb_erratum() local
97 &node_offset, &node_type); in fsl_fdt_fixup_usb_erratum()
[all …]
/third_party/uboot/u-boot-2020.01/common/
Dsplash_source.c307 int node_offset; in splash_load_fit() local
349 node_offset = fit_image_get_node(fit_header, splash_file); in splash_load_fit()
350 if (node_offset < 0) { in splash_load_fit()
358 if (!fit_image_get_data(fit_header, node_offset, &internal_splash_data, &internal_splash_size)) in splash_load_fit()
361 else if (!fit_image_get_data_position(fit_header, node_offset, &external_splash_addr)) in splash_load_fit()
364 else if (!fit_image_get_data_offset(fit_header, node_offset, &external_splash_addr)) { in splash_load_fit()
376 res = fit_image_get_data_size(fit_header, node_offset, &external_splash_size); in splash_load_fit()
Dfdt_support.c1255 static u64 __of_translate_address(const void *blob, int node_offset, in __of_translate_address() argument
1265 fdt_get_name(blob, node_offset, NULL)); in __of_translate_address()
1268 parent = fdt_parent_offset(blob, node_offset); in __of_translate_address()
1277 fdt_get_name(blob, node_offset, NULL)); in __of_translate_address()
1289 node_offset = parent; in __of_translate_address()
1290 parent = fdt_parent_offset(blob, node_offset); in __of_translate_address()
1304 fdt_get_name(blob, node_offset, NULL)); in __of_translate_address()
1312 if (of_translate_one(blob, node_offset, bus, pbus, in __of_translate_address()
1328 u64 fdt_translate_address(const void *blob, int node_offset, in fdt_translate_address() argument
1331 return __of_translate_address(blob, node_offset, in_addr, "ranges"); in fdt_translate_address()
[all …]
Dimage-sig.c234 info->node_offset = noffset; in fit_image_setup_verify()
/third_party/python/Modules/_blake2/
Dblake2s_impl.c92 unsigned long long node_offset, int node_depth, in py_blake2s_new_impl() argument
161 if (node_offset > 0xFFFFFFFFFFFFULL) { in py_blake2s_new_impl()
166 store48(&(self->param.node_offset), node_offset); in py_blake2s_new_impl()
169 store64(&(self->param.node_offset), node_offset); in py_blake2s_new_impl()
Dblake2b_impl.c92 unsigned long long node_offset, int node_depth, in py_blake2b_new_impl() argument
161 if (node_offset > 0xFFFFFFFFFFFFULL) { in py_blake2b_new_impl()
166 store48(&(self->param.node_offset), node_offset); in py_blake2b_new_impl()
169 store64(&(self->param.node_offset), node_offset); in py_blake2b_new_impl()
/third_party/uboot/u-boot-2020.01/arch/arm/mach-k3/
Dsysfw-loader.c56 int node_offset; in fit_get_data_by_name() local
58 node_offset = fdt_subnode_offset(fit, images, name); in fit_get_data_by_name()
59 if (node_offset < 0) in fit_get_data_by_name()
62 return fit_image_get_data(fit, node_offset, addr, size); in fit_get_data_by_name()
/third_party/python/Modules/_blake2/clinic/
Dblake2b_impl.c.h18 unsigned long long node_offset, int node_depth,
39 unsigned long long node_offset = 0; in py_blake2b_new() local
145 if (!_PyLong_UnsignedLongLong_Converter(fastargs[8], &node_offset)) { in py_blake2b_new()
194 …pe, data, digest_size, &key, &salt, &person, fanout, depth, leaf_size, node_offset, node_depth, in… in py_blake2b_new()
Dblake2s_impl.c.h18 unsigned long long node_offset, int node_depth,
39 unsigned long long node_offset = 0; in py_blake2s_new() local
145 if (!_PyLong_UnsignedLongLong_Converter(fastargs[8], &node_offset)) { in py_blake2s_new()
194 …pe, data, digest_size, &key, &salt, &person, fanout, depth, leaf_size, node_offset, node_depth, in… in py_blake2s_new()
/third_party/openssl/crypto/blake2/
Dblake2_local.h37 uint8_t node_offset[6];/* 14 */ member
60 uint8_t node_offset[8];/* 16 */ member
Dblake2s.c87 store48(P->node_offset, 0); in BLAKE2s_Init()
Dblake2b.c90 store64(P->node_offset, 0); in BLAKE2b_Init()
/third_party/python/Modules/_blake2/impl/
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()
182 store48( &P->node_offset, 0 ); in blake2s_init()
204 store48( &P->node_offset, 0 ); in blake2s_init_key()
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()
188 store64( &P->node_offset, 0 ); in blake2b_init()
211 store64( &P->node_offset, 0 ); in blake2b_init_key()
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()
Dblake2.h78 uint8_t node_offset[6];// 14 member
104 uint64_t node_offset; // 16 member
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()
Dblake2sp.c35 store48( P->node_offset, offset ); in blake2sp_init_leaf()
53 store48( P->node_offset, 0ULL ); in blake2sp_init_root()
Dblake2bp.c36 store64(&P->node_offset, offset); in blake2bp_init_leaf()
55 store64(&P->node_offset, 0); in blake2bp_init_root()
/third_party/uboot/u-boot-2020.01/include/
Dfdt_support.h233 u64 fdt_translate_address(const void *blob, int node_offset,
245 u64 fdt_translate_dma_address(const void *blob, int node_offset,
/third_party/uboot/u-boot-2020.01/drivers/pinctrl/
Dpinctrl-generic.c247 int node_offset = dev_of_offset(config); in pinctrl_generic_set_state_one() local
253 for (prop_offset = fdt_first_property_offset(fdt, node_offset); in pinctrl_generic_set_state_one()
/third_party/python/Lib/test/
Dtest_hashlib.py662 constructor(node_offset=0)
663 constructor(node_offset=max_offset)
664 self.assertRaises(ValueError, constructor, node_offset=-1)
665 self.assertRaises(OverflowError, constructor, node_offset=max_offset+1)
680 node_offset=512,
742 node_offset=5,
785 node_offset=5,
/third_party/uboot/u-boot-2020.01/drivers/net/fsl-mc/
Dmc.c121 int node_offset; in parse_mc_firmware_fit_image() local
141 node_offset = fit_image_get_node(fit_hdr, uname); in parse_mc_firmware_fit_image()
143 if (node_offset < 0) { in parse_mc_firmware_fit_image()
149 if (!(fit_image_verify(fit_hdr, node_offset))) { in parse_mc_firmware_fit_image()
155 fit_image_get_data(fit_hdr, node_offset, &data, &size); in parse_mc_firmware_fit_image()
/third_party/python/Doc/library/
Dhashlib.rst319 person=b'', fanout=1, depth=1, leaf_size=0, node_offset=0, \
324 person=b'', fanout=1, depth=1, leaf_size=0, node_offset=0, \
376 * *node_offset*: node offset (0 to 2**64-1 for BLAKE2b, 0 to 2**48-1 for
675 ... node_offset=0, node_depth=0, last_node=False)
679 ... node_offset=1, node_depth=0, last_node=True)
683 ... node_offset=0, node_depth=1, last_node=True)
/third_party/boost/boost/container/
Ddeque.hpp246 difference_type node_offset = in operator +=() local
249 this->priv_set_node(this->m_node + node_offset, block_size); in operator +=()
251 (offset - node_offset * block_size); in operator +=()

12