HomeSort by relevance Sort by last modified time
    Searched refs:in_pos (Results 1 - 18 of 18) sorted by null

  /external/qemu/telephony/
modem_driver.c 35 int in_pos; member in struct:__anon13920
53 int ret = sizeof(md->in_buff) - md->in_pos;
87 md->in_buff[ md->in_pos ] = c;
88 md->in_pos++;
96 if (md->in_pos == 0) /* skip empty lines */
99 md->in_buff[ md->in_pos ] = 0;
100 md->in_pos = 0;
118 md->in_buff[ md->in_pos++ ] = c;
119 if (md->in_pos == sizeof(md->in_buff)) {
121 md->in_pos = 0
    [all...]
simulator.c 26 int in_pos; member in struct:__anon13931
99 ret = sys_channel_read( client->channel, client->in_buff + client->in_pos, 1 );
105 if (client->in_buff[client->in_pos] == '\r' ||
106 client->in_buff[client->in_pos] == '\n' ) {
108 client->in_buff[client->in_pos] = 0;
110 if (client->in_pos > 0) {
112 client->in_pos = 0;
115 client->in_pos += 1;
test2.c 42 int in_pos; member in struct:__anon13938
111 ret = sys_channel_read( client->channel, client->in_buff + client->in_pos, 1 );
117 if (client->in_buff[client->in_pos] == '\r' ||
118 client->in_buff[client->in_pos] == '\n' ) {
120 client->in_buff[client->in_pos] = 0;
127 client->in_pos = 0;
129 client->in_pos += 1;
  /external/lzma/xz-embedded/
xz_dec_stream.c 47 /* Saved in_pos and out_pos */
163 * Fill s->temp by copying data starting from b->in[b->in_pos]. Caller
171 b->in_size - b->in_pos, s->temp.size - s->temp.pos);
173 memcpy(s->temp.buf + s->temp.pos, b->in + b->in_pos, copy_size);
174 b->in_pos += copy_size;
187 size_t *in_pos, size_t in_size)
194 while (*in_pos < in_size) {
195 byte = in[*in_pos];
196 ++*in_pos;
233 s->in_start = b->in_pos;
    [all...]
xz_dec_lzma2.c 110 size_t in_pos; member in struct:rc_dec
379 while (*left > 0 && b->in_pos < b->in_size
381 copy_size = min(b->in_size - b->in_pos,
390 memcpy(dict->buf + dict->pos, b->in + b->in_pos, copy_size);
400 memcpy(b->out + b->out_pos, b->in + b->in_pos,
407 b->in_pos += copy_size;
452 if (b->in_pos == b->in_size)
455 rc->code = (rc->code << 8) + b->in[b->in_pos++];
465 return rc->in_pos > rc->in_limit;
482 rc->code = (rc->code << RC_SHIFT_BITS) + rc->in[rc->in_pos++]
    [all...]
xz.h 127 * if in_pos is equal to in_size.
128 * @in_pos: Current position in the input buffer. This must not exceed
138 * the variables in_pos and out_pos are modified by the XZ code.
142 size_t in_pos; member in struct:xz_buf
209 * XZ_STREAM_END), b->in_pos and b->out_pos are not modified and the
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
nvc0_program.h 47 uint8_t in_pos[PIPE_MAX_SHADER_INPUTS]; member in struct:nvc0_program::__anon18478
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_program.h 47 uint8_t in_pos[PIPE_MAX_SHADER_INPUTS]; member in struct:nvc0_program::__anon10962
  /external/wpa_supplicant_8/src/tls/
tlsv1_client.c 145 u8 *msg = NULL, *in_msg = NULL, *in_pos, *in_end, alert, ct; local
213 in_pos = in_msg;
218 while (in_pos < in_end) {
219 in_msg_len = in_end - in_pos;
220 if (tlsv1_client_process_handshake(conn, ct, in_pos,
225 in_pos += in_msg_len;
tlsv1_server.c 137 u8 *msg = NULL, *in_msg, *in_pos, *in_end, alert, ct; local
172 in_pos = in_msg;
177 while (in_pos < in_end) {
178 in_msg_len = in_end - in_pos;
179 if (tlsv1_server_process_handshake(conn, ct, in_pos,
182 in_pos += in_msg_len;
  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fulltext.c 398 int in_pos = readPosition(&m->in); local
400 while( block_pos!=-1 || in_pos!=-1 ){
401 if( block_pos-m->iOffset==in_pos ){
407 docListAddPos(m->pOut, in_pos);
410 in_pos = readPosition(&m->in);
411 } else if( in_pos==-1 || (block_pos!=-1 && block_pos-m->iOffset<in_pos) ){
414 in_pos = readPosition(&m->in);
    [all...]
  /external/libunwind/src/
elfxx.c 280 size_t in_pos = 0, out_pos = 0;
283 compressed, &in_pos, compressed_len,
  /external/chromium_org/content/common/gpu/media/
rendering_helper.cc 239 attribute vec4 in_pos;
247 gl_Position = in_pos;
298 int pos_location = glGetAttribLocation(program_, "in_pos");
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/include/isl/
aff.h 321 __isl_take isl_multi_aff *ma1, unsigned in_pos, unsigned out_pos,
549 __isl_take isl_multi_pw_aff *mpa1, unsigned in_pos, unsigned out_pos,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/isl/
aff.h 321 __isl_take isl_multi_aff *ma1, unsigned in_pos, unsigned out_pos,
549 __isl_take isl_multi_pw_aff *mpa1, unsigned in_pos, unsigned out_pos,
  /external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
sctp_structs.h 683 uint16_t in_pos; member in struct:sctp_tsn_log
    [all...]
sctp_indata.c     [all...]
sctp_output.c     [all...]

Completed in 261 milliseconds