Home
last modified time | relevance | path

Searched refs:cpos (Results 1 – 10 of 10) sorted by relevance

/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Drhino-python.extensions162 // compute cpos as the char pos of next non-WS token in line
163 var cpos = t.getCharPositionInLine(); // column dictates indent/dedent
165 cpos = -1; // pretend EOF always happens at left edge
168 cpos = t.getText().length;
173 if ( cpos > lastIndent ) { // they indented; track and gen INDENT
174 this.push(cpos);
180 else if ( cpos < lastIndent ) { // they dedented
182 var prevIndex = this.findPreviousIndent(cpos);
/external/wpa_supplicant_8/src/eap_server/
Deap_server_psk.c223 const u8 *cpos; in eap_psk_process_2() local
230 cpos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_PSK, respData, in eap_psk_process_2()
232 if (cpos == NULL || left < sizeof(*resp)) { in eap_psk_process_2()
236 resp = (const struct eap_psk_hdr_2 *) cpos; in eap_psk_process_2()
237 cpos = (const u8 *) (resp + 1); in eap_psk_process_2()
247 os_memcpy(data->id_p, cpos, left); in eap_psk_process_2()
/external/qemu/audio/
Ddsoundaudio.c766 DWORD cpos, rpos; in dsound_run_in() local
785 &cpos, in dsound_run_in()
802 if (cpos & hw->info.align) { in dsound_run_in()
804 cpos, hw->info.align); in dsound_run_in()
806 cpos >>= hwshift; in dsound_run_in()
808 len = audio_ring_dist (cpos, hw->wpos, hw->samples); in dsound_run_in()
/external/openssl/crypto/modes/asm/
Dghash-parisc.pl686 my $cpos=63-$3;
687 $opcode |= (($cpos&0x20)<<6)|(($cpos&0x1f)<<5); # encode sa
704 my $cpos=63-$2;
706 $opcode |= (($cpos&0x20)<<6)|(($cpos&0x1f)<<5); # encode pos
/external/wpa_supplicant_8/src/eap_peer/
Deap_psk.c92 const u8 *cpos; in eap_psk_process_1() local
96 cpos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_PSK, reqData, &len); in eap_psk_process_1()
97 hdr1 = (const struct eap_psk_hdr_1 *) cpos; in eap_psk_process_1()
98 if (cpos == NULL || len < sizeof(*hdr1)) { in eap_psk_process_1()
/external/mksh/src/
Ddot.mkshrc81 local -i fl=0 fv=0 fn=0 cpos=0
111 if (( fn && (cpos += dwidth + 1) >= 79 && \
114 (( cpos = dwidth + 1 ))
/external/wpa_supplicant_8/src/rsn_supp/
Dtdls.c1435 const u8 *cpos; in wpa_tdls_process_tpk_m1() local
1455 cpos = buf; in wpa_tdls_process_tpk_m1()
1456 cpos += 1 /* pkt_type */ + 1 /* Category */ + 1 /* Action */; in wpa_tdls_process_tpk_m1()
1459 dtoken = *cpos++; /* dialog token */ in wpa_tdls_process_tpk_m1()
1519 peer->capability = WPA_GET_LE16(cpos); in wpa_tdls_process_tpk_m1()
1520 cpos += 2; in wpa_tdls_process_tpk_m1()
1522 ielen = len - (cpos - buf); /* start of IE in buf */ in wpa_tdls_process_tpk_m1()
1523 if (wpa_supplicant_parse_ies(cpos, ielen, &kde) < 0) { in wpa_tdls_process_tpk_m1()
/external/openssl/crypto/sha/asm/
Dsha512-parisc.pl745 my $cpos=63-$3;
746 $opcode |= (($cpos&0x20)<<6)|(($cpos&0x1f)<<5); # encode sa
/external/openssl/crypto/bn/asm/
Dparisc-mont.pl956 my $cpos=63-$3;
957 $opcode |= (($cpos&0x20)<<6)|(($cpos&0x1f)<<5); # encode sa
/external/expat/lib/
Dxmlparse.c6364 XML_Content *cpos; in build_model() local
6374 cpos = &ret[1]; in build_model()
6376 build_node(parser, 0, ret, &cpos, &str); in build_model()