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

  /external/qemu/telephony/
modem_driver.c 35 int in_pos; member in struct:__anon10271
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:__anon10282
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:__anon10289
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/harfbuzz/src/
harfbuzz-buffer.c 164 buffer->in_pos = 0;
243 tmp_pos = buffer->in_pos;
244 buffer->in_pos = buffer->out_pos;
254 If `component' is 0xFFFF, the component value from buffer->in_pos
258 If `ligID' is 0xFFFF, the ligID value from buffer->in_pos
263 from the glyph at position `buffer->in_pos'.
265 The cluster value for the glyph at position buffer->in_pos is used
291 properties = buffer->in_string[buffer->in_pos].properties;
292 cluster = buffer->in_string[buffer->in_pos].cluster;
294 component = buffer->in_string[buffer->in_pos].component
    [all...]
harfbuzz-buffer-private.h 77 #define IN_CURGLYPH() (buffer->in_string[buffer->in_pos].gindex)
78 #define IN_CURITEM() (&buffer->in_string[buffer->in_pos])
harfbuzz-buffer.h 70 HB_UInt in_pos; member in struct:HB_BufferRec_
harfbuzz-gpos.c 1039 sp->ValueFormat, POSITION( buffer->in_pos ) );
1048 sp->ValueFormat, POSITION( buffer->in_pos ) );
1057 (buffer->in_pos)++;
    [all...]
harfbuzz-gsub.c 981 if ( buffer->in_pos + lig->ComponentCount > buffer->in_length )
991 for ( i = 1, j = buffer->in_pos + 1; i < lig->ComponentCount; i++, j++ )
1020 if ( j == buffer->in_pos + i ) /* No input glyphs skipped */
1025 if ( IN_LIGID( buffer->in_pos ) )
1059 (buffer->in_pos)++;
1094 old_pos = buffer->in_pos;
1103 i += buffer->in_pos - old_pos;
    [all...]
  /bionic/libc/unistd/
sysconf.c 277 int in_pos; member in struct:__anon602
290 p->in_pos = 0;
320 if (p->in_pos >= p->in_len) {
323 p->in_len = p->in_pos = 0;
333 return p->input[ p->in_pos++ ];
  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
tlsv1_client.c 137 u8 *msg = NULL, *in_msg, *in_pos, *in_end, alert, ct; local
168 in_pos = in_msg;
173 while (in_pos < in_end) {
174 in_msg_len = in_end - in_pos;
175 if (tlsv1_client_process_handshake(conn, ct, in_pos,
180 in_pos += in_msg_len;
tlsv1_server.c 116 u8 *msg = NULL, *in_msg, *in_pos, *in_end, alert, ct; local
142 in_pos = in_msg;
147 while (in_pos < in_end) {
148 in_msg_len = in_end - in_pos;
149 if (tlsv1_server_process_handshake(conn, ct, in_pos,
152 in_pos += in_msg_len;
  /external/wpa_supplicant_8/src/tls/
tlsv1_client.c 137 u8 *msg = NULL, *in_msg, *in_pos, *in_end, alert, ct; local
168 in_pos = in_msg;
173 while (in_pos < in_end) {
174 in_msg_len = in_end - in_pos;
175 if (tlsv1_client_process_handshake(conn, ct, in_pos,
180 in_pos += in_msg_len;
tlsv1_server.c 116 u8 *msg = NULL, *in_msg, *in_pos, *in_end, alert, ct; local
142 in_pos = in_msg;
147 while (in_pos < in_end) {
148 in_msg_len = in_end - in_pos;
149 if (tlsv1_server_process_handshake(conn, ct, in_pos,
152 in_pos += in_msg_len;
  /external/wpa_supplicant/
tlsv1_client.c 1828 u8 *msg = NULL, *in_msg, *in_pos, *in_end, alert, ct; local
    [all...]

Completed in 6506 milliseconds