/external/u-boot/drivers/usb/common/ |
D | fsl-dt-fixup.c | 36 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 …]
|
/external/python/cpython3/Modules/_blake2/ |
D | blake2b_impl.c | 100 unsigned long long node_offset = 0; in py_blake2b_new_impl() local 170 node_offset = PyLong_AsUnsignedLongLong(node_offset_obj); in py_blake2b_new_impl() 171 if (node_offset == (unsigned long long) -1 && PyErr_Occurred()) { in py_blake2b_new_impl() 176 if (node_offset > 0xFFFFFFFFFFFFULL) { in py_blake2b_new_impl() 181 store48(&(self->param.node_offset), node_offset); in py_blake2b_new_impl() 184 store64(&(self->param.node_offset), node_offset); in py_blake2b_new_impl()
|
D | blake2s_impl.c | 100 unsigned long long node_offset = 0; in py_blake2s_new_impl() local 170 node_offset = PyLong_AsUnsignedLongLong(node_offset_obj); in py_blake2s_new_impl() 171 if (node_offset == (unsigned long long) -1 && PyErr_Occurred()) { in py_blake2s_new_impl() 176 if (node_offset > 0xFFFFFFFFFFFFULL) { in py_blake2s_new_impl() 181 store48(&(self->param.node_offset), node_offset); in py_blake2s_new_impl() 184 store64(&(self->param.node_offset), node_offset); in py_blake2s_new_impl()
|
/external/tensorflow/tensorflow/core/framework/ |
D | graph_def_util.cc | 56 int node_offset) { in AddDefaultAttrsToGraphDef() argument 57 return AddDefaultAttrsToGraphDef(graph_def, op_registry, node_offset, false); in AddDefaultAttrsToGraphDef() 62 int node_offset, bool skip_unknown_ops) { in AddDefaultAttrsToGraphDef() argument 63 if (node_offset > graph_def->node_size()) { in AddDefaultAttrsToGraphDef() 67 node_offset, " with total nodes in graph: ", graph_def->node_size()); in AddDefaultAttrsToGraphDef() 70 for (int i = node_offset; i < graph_def->node_size(); ++i) { in AddDefaultAttrsToGraphDef()
|
D | graph_def_util.h | 57 int node_offset); 63 int node_offset, bool skip_unknown_ops);
|
/external/u-boot/common/ |
D | splash_source.c | 305 int node_offset; in splash_load_fit() local 338 node_offset = fit_image_get_node(fit_header, location->name); in splash_load_fit() 339 if (node_offset < 0) { in splash_load_fit() 345 res = fit_image_get_data_offset(fit_header, node_offset, in splash_load_fit() 352 res = fit_image_get_data_size(fit_header, node_offset, &splash_size); in splash_load_fit()
|
D | fdt_support.c | 1206 static u64 __of_translate_address(const void *blob, int node_offset, in __of_translate_address() argument 1216 fdt_get_name(blob, node_offset, NULL)); in __of_translate_address() 1219 parent = fdt_parent_offset(blob, node_offset); in __of_translate_address() 1228 fdt_get_name(blob, node_offset, NULL)); in __of_translate_address() 1240 node_offset = parent; in __of_translate_address() 1241 parent = fdt_parent_offset(blob, node_offset); in __of_translate_address() 1255 fdt_get_name(blob, node_offset, NULL)); in __of_translate_address() 1263 if (of_translate_one(blob, node_offset, bus, pbus, in __of_translate_address() 1279 u64 fdt_translate_address(const void *blob, int node_offset, in fdt_translate_address() argument 1282 return __of_translate_address(blob, node_offset, in_addr, "ranges"); in fdt_translate_address()
|
D | image-sig.c | 166 info->node_offset = noffset; in fit_image_setup_verify()
|
/external/python/cpython3/Modules/_blake2/impl/ |
D | blake2s-ref.c | 109 …KE2_LOCAL_INLINE(int) blake2s_param_set_node_offset( blake2s_param *P, const uint64_t node_offset ) in blake2s_param_set_node_offset() argument 111 store48( P->node_offset, node_offset ); in blake2s_param_set_node_offset() 178 store48( &P->node_offset, 0 ); in blake2s_init() 200 store48( &P->node_offset, 0 ); in blake2s_init_key()
|
D | blake2b-ref.c | 116 …KE2_LOCAL_INLINE(int) blake2b_param_set_node_offset( blake2b_param *P, const uint64_t node_offset ) in blake2b_param_set_node_offset() argument 118 store64( &P->node_offset, node_offset ); in blake2b_param_set_node_offset() 184 store64( &P->node_offset, 0 ); in blake2b_init() 207 store64( &P->node_offset, 0 ); in blake2b_init_key()
|
D | blake2.h | 97 uint8_t node_offset[6];// 14 member 112 uint64_t node_offset; /* 16 */ member
|
D | blake2s.c | 132 …KE2_LOCAL_INLINE(int) blake2s_param_set_node_offset( blake2s_param *P, const uint64_t node_offset ) in blake2s_param_set_node_offset() argument 134 store48( P->node_offset, node_offset ); in blake2s_param_set_node_offset()
|
D | blake2b.c | 145 …KE2_LOCAL_INLINE(int) blake2b_param_set_node_offset( blake2b_param *P, const uint64_t node_offset ) in blake2b_param_set_node_offset() argument 147 P->node_offset = node_offset; in blake2b_param_set_node_offset()
|
/external/python/cpython3/Lib/test/ |
D | test_hashlib.py | 580 constructor(node_offset=0) 581 constructor(node_offset=max_offset) 582 self.assertRaises(OverflowError, constructor, node_offset=-1) 583 self.assertRaises(OverflowError, constructor, node_offset=max_offset+1) 598 node_offset=512, 660 node_offset=5, 703 node_offset=5,
|
/external/u-boot/drivers/pinctrl/ |
D | pinctrl-generic.c | 247 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()
|
/external/u-boot/drivers/net/fsl-mc/ |
D | mc.c | 115 int node_offset; in parse_mc_firmware_fit_image() local 135 node_offset = fit_image_get_node(fit_hdr, uname); in parse_mc_firmware_fit_image() 137 if (node_offset < 0) { in parse_mc_firmware_fit_image() 143 if (!(fit_image_verify(fit_hdr, node_offset))) { in parse_mc_firmware_fit_image() 149 fit_image_get_data(fit_hdr, node_offset, &data, &size); in parse_mc_firmware_fit_image()
|
/external/python/cpython3/Doc/library/ |
D | hashlib.rst | 310 person=b'', fanout=1, depth=1, leaf_size=0, node_offset=0, \ 314 person=b'', fanout=1, depth=1, leaf_size=0, node_offset=0, \ 365 * *node_offset*: node offset (0 to 2**64-1 for BLAKE2b, 0 to 2**48-1 for 664 ... node_offset=0, node_depth=0, last_node=False) 668 ... node_offset=1, node_depth=0, last_node=True) 672 ... node_offset=0, node_depth=1, last_node=True)
|
/external/u-boot/include/ |
D | fdt_support.h | 216 u64 fdt_translate_address(const void *blob, int node_offset,
|
D | image.h | 1098 int node_offset; /* Offset of signature node */ member
|
/external/u-boot/tools/ |
D | image-host.c | 167 info->node_offset = noffset; in fit_image_setup_sig()
|
/external/libhevc/encoder/ |
D | ihevce_lap_interface.c | 300 WORD32 node_offset, curr_layer; in ihevce_lap_init() local 319 node_offset = 1; in ihevce_lap_init() 324 &node_offset, in ihevce_lap_init()
|
/external/kmod/libkmod/ |
D | libkmod-index.c | 142 enum node_offset { enum
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.4rc1.rst | 417 Fix Blake2 params leaf_size and node_offset on big endian platforms. Patch
|
D | 3.7.0a3.rst | 722 Fix Blake2 params leaf_size and node_offset on big endian platforms. Patch
|
/external/kmod/tools/ |
D | depmod.c | 176 enum node_offset { enum
|