Home
last modified time | relevance | path

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

/external/libxcam/modules/soft/
Dsoft_geo_tasks_priv.cpp53 (in_pos[first].x >= image->get_width ()) || \ in work_range()
54 (in_pos[first].y >= image->get_height ()) || \ in work_range()
55 (in_pos[last].x <= 0.0f) || (in_pos[last].y <= 0.0f) in work_range()
61 Float2 in_pos[8]; in work_range() local
77 lut->read_interpolate_array<Float2, 8> (lut_pos, in_pos); in work_range()
78 in_luma->read_interpolate_array<float, 8> (in_pos, luma_value); in work_range()
88 in_pos[0] /= 2.0f; in work_range()
89 in_pos[1] = in_pos[2] / 2.0f; in work_range()
90 in_pos[2] = in_pos[4] / 2.0f; in work_range()
91 in_pos[3] = in_pos[6] / 2.0f; in work_range()
[all …]
/external/xz-embedded/linux/lib/xz/
Dxz_dec_stream.c171 b->in_size - b->in_pos, s->temp.size - s->temp.pos); in fill_temp()
173 memcpy(s->temp.buf + s->temp.pos, b->in + b->in_pos, copy_size); in fill_temp()
174 b->in_pos += copy_size; in fill_temp()
187 size_t *in_pos, size_t in_size) in dec_vli() argument
194 while (*in_pos < in_size) { in dec_vli()
195 byte = in[*in_pos]; in dec_vli()
196 ++*in_pos; in dec_vli()
233 s->in_start = b->in_pos; in dec_block()
243 s->block.compressed += b->in_pos - s->in_start; in dec_block()
301 size_t in_used = b->in_pos - s->in_start; in index_update()
[all …]
Dxz_dec_lzma2.c110 size_t in_pos; member
379 while (*left > 0 && b->in_pos < b->in_size in dict_uncompressed()
381 copy_size = min(b->in_size - b->in_pos, in dict_uncompressed()
390 memcpy(dict->buf + dict->pos, b->in + b->in_pos, copy_size); in dict_uncompressed()
400 memcpy(b->out + b->out_pos, b->in + b->in_pos, in dict_uncompressed()
407 b->in_pos += copy_size; in dict_uncompressed()
452 if (b->in_pos == b->in_size) in rc_read_init()
455 rc->code = (rc->code << 8) + b->in[b->in_pos++]; in rc_read_init()
465 return rc->in_pos > rc->in_limit; in rc_limit_exceeded()
482 rc->code = (rc->code << RC_SHIFT_BITS) + rc->in[rc->in_pos++]; in rc_normalize()
[all …]
Dxz_dec_test.c75 buffers.in_pos = 0; in xz_dec_test_open()
122 if (buffers.in_pos == buffers.in_size) { in xz_dec_test_write()
123 buffers.in_pos = 0; in xz_dec_test_write()
145 return size - remaining - (buffers.in_size - buffers.in_pos); in xz_dec_test_write()
/external/toybox/toys/pending/
Dxzcat.c92 size_t in_pos; member
229 b.in_pos = 0; in do_xzcat()
236 if (b.in_pos == b.in_size) { in do_xzcat()
238 b.in_pos = 0; in do_xzcat()
1266 size_t in_pos; member
1526 while (*left > 0 && b->in_pos < b->in_size in dict_uncompressed()
1528 copy_size = minof(b->in_size - b->in_pos, in dict_uncompressed()
1537 memcpy(dict->buf + dict->pos, b->in + b->in_pos, copy_size); in dict_uncompressed()
1546 memcpy(b->out + b->out_pos, b->in + b->in_pos, in dict_uncompressed()
1552 b->in_pos += copy_size; in dict_uncompressed()
[all …]
/external/xz-embedded/linux/lib/
Ddecompress_unxz.c295 b.in_pos = 0; in unxz()
303 if (b.in_pos == b.in_size && fill != NULL) { in unxz()
305 *in_used += b.in_pos; in unxz()
307 b.in_pos = 0; in unxz()
347 *in_used += b.in_pos; in unxz()
/external/python/cpython2/Modules/
Dcgen.py260 in_pos = []
265 in_pos.append(i_in)
268 in_pos.append(-1)
288 print repr(in_pos[j]) + ',',
312 print repr(in_pos[i]) + ',',
323 print repr(in_pos[i]) + ',',
/external/u-boot/drivers/gpio/
Dsh_pfc.c70 unsigned long in_pos) in gpio_read_bit() argument
74 pos = dr->reg_width - (in_pos + 1); in gpio_read_bit()
84 unsigned long in_pos, unsigned long value) in gpio_write_bit() argument
88 pos = dr->reg_width - (in_pos + 1); in gpio_write_bit()
104 unsigned long in_pos, in config_reg_helper() argument
119 *posp = crp->reg_width - ((in_pos + 1) * crp->field_width); in config_reg_helper()
121 *maskp = (1 << crp->var_field_width[in_pos]) - 1; in config_reg_helper()
123 for (k = 0; k <= in_pos; k++) in config_reg_helper()
/external/xz-embedded/userspace/
Dxzminidec.c55 b.in_pos = 0; in main()
62 if (b.in_pos == b.in_size) { in main()
64 b.in_pos = 0; in main()
Dbytetest.c47 b.in_pos = 0; in main()
54 if (b.in_pos == b.in_size) { in main()
56 b.in_pos = 0; in main()
Dbuftest.c35 b.in_pos = 0; in main()
/external/wpa_supplicant_8/src/tls/
Dtlsv1_server.c137 u8 *msg = NULL, *in_msg, *in_pos, *in_end, alert, ct; in tlsv1_server_handshake() local
173 in_pos = in_msg; in tlsv1_server_handshake()
178 while (in_pos < in_end) { in tlsv1_server_handshake()
179 in_msg_len = in_end - in_pos; in tlsv1_server_handshake()
180 if (tlsv1_server_process_handshake(conn, ct, in_pos, in tlsv1_server_handshake()
183 in_pos += in_msg_len; in tlsv1_server_handshake()
Dtlsv1_client.c145 u8 *msg = NULL, *in_msg = NULL, *in_pos, *in_end, alert, ct; in tlsv1_client_handshake() local
213 in_pos = in_msg; in tlsv1_client_handshake()
218 while (in_pos < in_end) { in tlsv1_client_handshake()
219 in_msg_len = in_end - in_pos; in tlsv1_client_handshake()
220 if (tlsv1_client_process_handshake(conn, ct, in_pos, in tlsv1_client_handshake()
225 in_pos += in_msg_len; in tlsv1_client_handshake()
/external/mesa3d/src/mesa/state_tracker/
Dst_pbo.c292 struct ureg_src in_pos; in st_pbo_create_vs() local
301 in_pos = ureg_DECL_vs_input(ureg, TGSI_SEMANTIC_POSITION); in st_pbo_create_vs()
313 ureg_MOV(ureg, out_pos, in_pos); in st_pbo_create_vs()
339 struct ureg_src in_pos; in st_pbo_create_gs() local
354 in_pos = ureg_DECL_input(ureg, TGSI_SEMANTIC_POSITION, 0, 0, 1); in st_pbo_create_gs()
359 struct ureg_src in_pos_vertex = ureg_src_dimension(in_pos, i); in st_pbo_create_gs()
/external/xz-embedded/linux/include/linux/
Dxz.h142 size_t in_pos; member
/external/u-boot/drivers/pinctrl/renesas/
Dpfc.c140 unsigned int in_pos, in sh_pfc_config_reg_helper() argument
150 *posp = crp->reg_width - ((in_pos + 1) * crp->field_width); in sh_pfc_config_reg_helper()
152 *maskp = (1 << crp->var_field_width[in_pos]) - 1; in sh_pfc_config_reg_helper()
154 for (k = 0; k <= in_pos; k++) in sh_pfc_config_reg_helper()
/external/tensorflow/tensorflow/lite/kernels/internal/reference/
Dreference_ops.h4718 const int in_pos = in ReverseSequence() local
4720 const Scalar* in_ptr = input_data + in_pos; in ReverseSequence()
4723 output_ptr = output_data + in_pos; in ReverseSequence()
4744 const int in_pos = in ReverseSequence() local
4746 const Scalar* in_ptr = input_data + in_pos; in ReverseSequence()
4748 output_ptr = output_data + in_pos; in ReverseSequence()