HomeSort by relevance Sort by last modified time
    Searched defs:out_pos (Results 1 - 9 of 9) sorted by null

  /external/bsdiff/
suffix_array_index_unittest.cc 28 uint64_t* out_pos) {
30 pattern.size(), out_length, out_pos); local
33 ASSERT_LT(*out_pos, text_.size());
34 ASSERT_LE(*out_pos + *out_length, text_.size());
35 EXPECT_EQ(0, memcmp(text_.data() + *out_pos, pattern.data(), *out_length));
  /external/xz-embedded/linux/include/linux/
xz.h 132 * if out_pos is equal to out_size.
133 * @out_pos: Current position in the output buffer. This must not exceed
137 * Only the contents of the output buffer from out[out_pos] onward, and
138 * the variables in_pos and out_pos are modified by the XZ code.
146 size_t out_pos; member in struct:xz_buf
209 * XZ_STREAM_END), b->in_pos and b->out_pos are not modified and the
210 * contents of the output buffer from b->out[b->out_pos] onward are
  /external/tensorflow/tensorflow/core/kernels/
ragged_gather_op.cc 40 int out_pos = 0; local
44 values(out_pos, j) = params_dense_values(i, j);
46 ++out_pos;
  /external/libxcam/xcore/interface/
stitcher.cpp 259 uint32_t out_pos = format_angle (center_angle - _out_start_angle) / 360.0f * _output_width; local
260 XCAM_ASSERT (out_pos < _output_width);
261 if (_output_width <= constraint_margin + out_pos || out_pos <= constraint_margin)
262 out_pos = 0;
265 center_angle = XCAM_ALIGN_AROUND (out_pos, _alignment_x) / (float)_output_width * 360.0f - _out_start_angle;
281 _center_marks[i].out_center_x = out_pos;
  /external/mesa3d/src/mesa/state_tracker/
st_pbo.c 294 struct ureg_dst out_pos; local
303 out_pos = ureg_DECL_output(ureg, TGSI_SEMANTIC_POSITION, 0);
312 /* out_pos = in_pos */
313 ureg_MOV(ureg, out_pos, in_pos);
317 /* out_pos.z = i2f(gl_InstanceID) */
318 ureg_I2F(ureg, ureg_writemask(out_pos, TGSI_WRITEMASK_Z),
337 struct ureg_dst out_pos; local
351 out_pos = ureg_DECL_output(ureg, TGSI_SEMANTIC_POSITION, 0);
361 /* out_pos = in_pos[i] */
362 ureg_MOV(ureg, out_pos, in_pos_vertex)
    [all...]
  /external/wpa_supplicant_8/src/tls/
tlsv1_client.c 312 u8 alert, *out_pos, ct; local
340 out_pos = wpabuf_put(buf, 0);
343 out_pos, &olen, &alert);
375 out_pos[0], out_pos[1]);
376 if (out_pos[0] == TLS_ALERT_LEVEL_WARNING) {
382 alert = out_pos[1];
tlsv1_server.c 266 u8 alert, *out_end, *out_pos, ct; local
271 out_pos = out_data;
276 olen = out_end - out_pos;
278 out_pos, &olen, &alert);
300 out_pos[0], out_pos[1]);
302 if (out_pos[0] == TLS_ALERT_LEVEL_WARNING) {
309 out_pos[1]);
331 out_pos += olen;
332 if (out_pos > out_end)
    [all...]
  /external/xz-embedded/linux/lib/xz/
xz_dec_bcj.c 52 size_t out_pos; member in struct:xz_dec_bcj
403 copy_size = min_t(size_t, s->temp.filtered, b->out_size - b->out_pos);
404 memcpy(b->out + b->out_pos, s->temp.buf, copy_size);
405 b->out_pos += copy_size;
449 if (s->temp.size < b->out_size - b->out_pos || s->temp.size == 0) {
450 out_start = b->out_pos;
451 memcpy(b->out + b->out_pos, s->temp.buf, s->temp.size);
452 b->out_pos += s->temp.size;
459 bcj_apply(s, b->out, &out_start, b->out_pos);
469 s->temp.size = b->out_pos - out_start
    [all...]
  /external/toybox/toys/pending/
xzcat.c 82 * if out_pos is equal to out_size.
83 * @out_pos: Current position in the output buffer. This must not exceed
87 * Only the contents of the output buffer from out[out_pos] onward, and
88 * the variables in_pos and out_pos are modified by the XZ code.
96 size_t out_pos; member in struct:xz_buf
138 * XZ_STREAM_END), b->in_pos and b->out_pos are not modified and the
139 * contents of the output buffer from b->out[b->out_pos] onward are
232 b.out_pos = 0;
243 if (b.out_pos == sizeof(out)) {
244 if (fwrite(out, 1, b.out_pos, stdout) != b.out_pos)
446 size_t out_pos; member in struct:xz_dec_bcj
    [all...]

Completed in 464 milliseconds