Home
last modified time | relevance | path

Searched refs:poffset (Results 1 – 17 of 17) sorted by relevance

/external/dtc/libfdt/
Dfdt_overlay.c238 uint32_t poffset; in overlay_update_local_node_references() local
240 poffset = fdt32_to_cpu(fixup_val[i]); in overlay_update_local_node_references()
248 memcpy(&adj_val, tree_val + poffset, sizeof(adj_val)); in overlay_update_local_node_references()
256 poffset, in overlay_update_local_node_references()
354 int poffset, const char *label) in overlay_fixup_one_phandle() argument
386 name, name_len, poffset, in overlay_fixup_one_phandle()
432 int poffset, ret; in overlay_fixup_phandle() local
461 poffset = strtoul(sep + 1, &endptr, 10); in overlay_fixup_phandle()
467 poffset, label); in overlay_fixup_phandle()
/external/dtc/tests/
Dpylibfdt_tests.py104 poffset = self.fdt.first_property_offset(node, QUIET_NOTFOUND)
105 while poffset > 0:
106 prop = self.fdt.get_property_by_offset(poffset)
108 poffset = self.fdt.next_property_offset(poffset, QUIET_NOTFOUND)
178 poffset = self.fdt.first_property_offset(root)
179 prop = self.fdt.get_property_by_offset(poffset)
Doverlay.c39 const char *name, int poffset, in fdt_getprop_u32_by_poffset() argument
51 if (!val || (len < (sizeof(uint32_t) * (poffset + 1)))) in fdt_getprop_u32_by_poffset()
54 *out = fdt32_to_cpu(*(val + poffset)); in fdt_getprop_u32_by_poffset()
/external/ltp/lib/
Dtlibio.c555 off64_t poffset; /* pwrite(2) offset */ in lio_write_buffer() local
560 off64_t poffset; /* pwrite(2) offset */ in lio_write_buffer() local
646 poffset = (off64_t) ret; in lio_write_buffer()
985 (long long)poffset); in lio_write_buffer()
991 if ((ret = pwrite(fd, buffer, size, poffset)) == -1) { in lio_write_buffer()
995 (long long)poffset, errno, strerror(errno)); in lio_write_buffer()
1003 fd, size, (long long)poffset, ret); in lio_write_buffer()
1125 off64_t poffset; /* pread(2) offset */ in lio_read_buffer() local
1130 off64_t poffset; /* pread(2) offset */ in lio_read_buffer() local
1217 poffset = (off64_t) ret; in lio_read_buffer()
[all …]
/external/vboot_reference/utility/include/
Dgbb_utility.h79 int search_header_signatures(const std::string &image, long *poffset) const;
90 bool find_property(PROPINDEX i, uint32_t *poffset, uint32_t *psize,
/external/python/cpython3/Modules/_ctypes/
Dcfield.c48 Py_ssize_t *psize, Py_ssize_t *poffset, Py_ssize_t *palign, in PyCField_FromDesc() argument
158 if (align && *poffset % align) { in PyCField_FromDesc()
159 Py_ssize_t delta = align - (*poffset % align); in PyCField_FromDesc()
161 *poffset += delta; in PyCField_FromDesc()
168 self->offset = *poffset; in PyCField_FromDesc()
169 *poffset += size; in PyCField_FromDesc()
175 *poffset += dict->size - *pfield_size/8; in PyCField_FromDesc()
185 self->offset = *poffset - size; /* poffset is already updated for the NEXT field */ in PyCField_FromDesc()
195 self->offset = *poffset - size; /* poffset is already updated for the NEXT field */ in PyCField_FromDesc()
Dctypes.h130 Py_ssize_t *psize, Py_ssize_t *poffset, Py_ssize_t *palign,
/external/python/cpython2/Modules/_ctypes/
Dcfield.c48 Py_ssize_t *psize, Py_ssize_t *poffset, Py_ssize_t *palign, in PyCField_FromDesc() argument
158 if (align && *poffset % align) { in PyCField_FromDesc()
159 Py_ssize_t delta = align - (*poffset % align); in PyCField_FromDesc()
161 *poffset += delta; in PyCField_FromDesc()
168 self->offset = *poffset; in PyCField_FromDesc()
169 *poffset += size; in PyCField_FromDesc()
175 *poffset += dict->size - *pfield_size/8; in PyCField_FromDesc()
185 self->offset = *poffset - size; /* poffset is already updated for the NEXT field */ in PyCField_FromDesc()
195 self->offset = *poffset - size; /* poffset is already updated for the NEXT field */ in PyCField_FromDesc()
Dctypes.h170 Py_ssize_t *psize, Py_ssize_t *poffset, Py_ssize_t *palign,
/external/mesa3d/src/mesa/drivers/dri/radeon/
Dradeon_dma.h51 struct radeon_bo **pbo, int *poffset,
Dradeon_dma.c266 struct radeon_bo **pbo, int *poffset, in radeonAllocDmaRegion() argument
284 *poffset = rmesa->dma.current_used; in radeonAllocDmaRegion()
/external/mesa3d/src/mesa/drivers/dri/r200/
Dradeon_dma.h51 struct radeon_bo **pbo, int *poffset,
Dradeon_dma.c266 struct radeon_bo **pbo, int *poffset, in radeonAllocDmaRegion() argument
284 *poffset = rmesa->dma.current_used; in radeonAllocDmaRegion()
/external/libmtp/src/
Dptp-pack.c939 …s *params, unsigned char* data, PTPDevicePropDesc *dpd, unsigned int dpdlen, unsigned int *poffset) in ptp_unpack_Sony_DPD() argument
960 *poffset = PTP_dpd_Sony_FactoryDefaultValue; in ptp_unpack_Sony_DPD()
961 ret = ptp_unpack_DPV (params, data, poffset, dpdlen, &dpd->FactoryDefaultValue, dpd->DataType); in ptp_unpack_Sony_DPD()
963 if ((dpd->DataType == PTP_DTC_STR) && (*poffset == dpdlen)) in ptp_unpack_Sony_DPD()
965 ret = ptp_unpack_DPV (params, data, poffset, dpdlen, &dpd->CurrentValue, dpd->DataType); in ptp_unpack_Sony_DPD()
973 if (*poffset==PTP_dpd_Sony_FactoryDefaultValue) in ptp_unpack_Sony_DPD()
976 dpd->FormFlag=dtoh8a(&data[*poffset]); in ptp_unpack_Sony_DPD()
977 *poffset+=sizeof(uint8_t); in ptp_unpack_Sony_DPD()
981 …ret = ptp_unpack_DPV (params, data, poffset, dpdlen, &dpd->FORM.Range.MinimumValue, dpd->DataType); in ptp_unpack_Sony_DPD()
983 …ret = ptp_unpack_DPV (params, data, poffset, dpdlen, &dpd->FORM.Range.MaximumValue, dpd->DataType); in ptp_unpack_Sony_DPD()
[all …]
/external/tensorflow/tensorflow/java/src/main/native/
Dtensor_jni.cc281 const char* poffset = offsets_ + sizeof(offset) * index_; in Next() local
282 if (poffset >= limit_) { in Next()
288 memcpy(&offset, poffset, sizeof(offset)); in Next()
/external/pcre/dist2/src/
Dpcre2test.c6600 PCRE2_SIZE poffset; in process_data() local
6616 poffset = backchars(pp, ovector[0], maxlookbehind, utf); in process_data()
6617 PCHARS(backlength, pp, poffset, ovector[0] - poffset, utf, outfile); in process_data()
/external/wpa_supplicant_8/wpa_supplicant/
Dctrl_iface.c7186 char *ctx = NULL, *icon, *poffset, *psize; in get_hs20_icon() local
7194 poffset = str_token(cmd, " ", &ctx); in get_hs20_icon()
7196 if (!icon || !poffset || !psize) in get_hs20_icon()
7200 return hs20_get_icon(wpa_s, dst_addr, icon, atoi(poffset), atoi(psize), in get_hs20_icon()