Searched refs:byte_pos (Results 1 – 10 of 10) sorted by relevance
/third_party/uboot/u-boot-2020.01/drivers/mtd/nand/raw/ |
D | omap_gpmc.c | 502 uint32_t byte_pos, bit_pos; in omap_correct_data_bch() local 557 byte_pos = error_max - (error_loc[count] / 8) - 1; in omap_correct_data_bch() 559 if (byte_pos < SECTOR_BYTES) { in omap_correct_data_bch() 560 dat[byte_pos] ^= 1 << bit_pos; in omap_correct_data_bch() 561 debug("nand: bit-flip corrected @data=%d\n", byte_pos); in omap_correct_data_bch() 562 } else if (byte_pos < error_max) { in omap_correct_data_bch() 563 read_ecc[byte_pos - SECTOR_BYTES] ^= 1 << bit_pos; in omap_correct_data_bch() 564 debug("nand: bit-flip corrected @oob=%d\n", byte_pos - in omap_correct_data_bch()
|
D | atmel_nand.c | 442 int byte_pos, bit_pos, sector_size, pos; in pmecc_correct_data() local 450 byte_pos = tmp / 8; in pmecc_correct_data() 453 if (byte_pos >= (sector_size + extra_bytes)) in pmecc_correct_data() 456 if (byte_pos < sector_size) { in pmecc_correct_data() 457 err_byte = *(buf + byte_pos); in pmecc_correct_data() 458 *(buf + byte_pos) ^= (1 << bit_pos); in pmecc_correct_data() 460 pos = sector_num * host->pmecc_sector_size + byte_pos; in pmecc_correct_data() 462 pos, bit_pos, err_byte, *(buf + byte_pos)); in pmecc_correct_data() 466 + (byte_pos - sector_size); in pmecc_correct_data()
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/typedarray/ |
D | ecma-builtin-typedarray-prototype.c | 219 ecma_length_t byte_pos = 0; in ecma_builtin_typedarray_prototype_exec_routine() local 225 ecma_number_t element_num = typedarray_getter_cb (info.buffer_p + byte_pos); in ecma_builtin_typedarray_prototype_exec_routine() 256 byte_pos += info.element_size; in ecma_builtin_typedarray_prototype_exec_routine() 545 ecma_length_t byte_pos; in ecma_builtin_typedarray_prototype_reduce_with_direction() local 564 byte_pos = index << info.shift; in ecma_builtin_typedarray_prototype_reduce_with_direction() 565 ecma_number_t acc_num = getter_cb (info.buffer_p + byte_pos); in ecma_builtin_typedarray_prototype_reduce_with_direction() 599 byte_pos = index << info.shift; in ecma_builtin_typedarray_prototype_reduce_with_direction() 600 ecma_number_t get_num = getter_cb (info.buffer_p + byte_pos); in ecma_builtin_typedarray_prototype_reduce_with_direction() 727 ecma_length_t byte_pos = 0; in ecma_builtin_typedarray_prototype_filter() local 732 ecma_number_t get_num = getter_cb (info.buffer_p + byte_pos); in ecma_builtin_typedarray_prototype_filter() [all …]
|
/third_party/uboot/u-boot-2020.01/drivers/net/fm/ |
D | eth.c | 134 int byte_pos; in muram_readw() local 137 byte_pos = (ulong)addr & 0x3UL; in muram_readw() 138 if (byte_pos) in muram_readw() 151 int byte_pos; in muram_writew() local 153 byte_pos = (ulong)addr & 0x3UL; in muram_writew() 154 if (byte_pos) in muram_writew()
|
/third_party/gstreamer/gstreamer/libs/gst/base/ |
D | gstbitwriter.h | 180 guint byte_pos, bit_offset; \ 184 byte_pos = (bitwriter->bit_size >> 3); \ 186 cur_byte = bitwriter->data + byte_pos; \
|
/third_party/node/deps/brotli/c/enc/ |
D | compress_fragment.c | 348 size_t byte_pos = pos >> 3; in UpdateBits() local 354 uint32_t unchanged_bits = array[byte_pos] & mask; in UpdateBits() 356 array[byte_pos] = in UpdateBits()
|
/third_party/skia/third_party/externals/brotli/c/enc/ |
D | compress_fragment.c | 348 size_t byte_pos = pos >> 3; in UpdateBits() local 354 uint32_t unchanged_bits = array[byte_pos] & mask; in UpdateBits() 356 array[byte_pos] = in UpdateBits()
|
/third_party/jerryscript/jerry-core/ecma/operations/ |
D | ecma-objects.c | 198 ecma_length_t byte_pos = array_index << info.shift; in ecma_op_object_get_own_property() local 199 ecma_number_t num = ecma_get_typedarray_element (info.buffer_p + byte_pos, info.id); in ecma_op_object_get_own_property() 569 ecma_length_t byte_pos = array_index << info.shift; in ecma_op_object_find_own() local 570 ecma_number_t num = ecma_get_typedarray_element (info.buffer_p + byte_pos, info.id); in ecma_op_object_find_own() 1386 ecma_length_t byte_pos = array_index << info.shift; in ecma_op_object_put_with_receiver() local 1387 ecma_set_typedarray_element (info.buffer_p + byte_pos, num_var, info.id); in ecma_op_object_put_with_receiver()
|
/third_party/toybox/toys/pending/ |
D | xzcat.c | 618 uint32_t byte_pos; in bcj_ia64() local 639 byte_pos = bit_pos >> 3; in bcj_ia64() 643 instr |= (uint64_t)(buf[i + j + byte_pos]) in bcj_ia64() 665 buf[i + j + byte_pos] in bcj_ia64()
|
/third_party/gstreamer/gstplugins_good/gst/isomp4/ |
D | qtdemux.c | 1860 gst_qtdemux_find_sample (GstQTDemux * qtdemux, gint64 byte_pos, gboolean fw, in gst_qtdemux_find_sample() argument 1892 if (fw && (str->samples[i].offset < byte_pos)) in gst_qtdemux_find_sample() 1895 if (!fw && (str->samples[i].offset + str->samples[i].size > byte_pos)) in gst_qtdemux_find_sample()
|