Searched refs:wordlen (Results 1 - 5 of 5) sorted by relevance
/third_party/curl/lib/ |
H A D | imap.c | 909 size_t wordlen; in imap_state_capability_resp() local 921 for(wordlen = 0; line[wordlen] && line[wordlen] != ' ' && in imap_state_capability_resp() 922 line[wordlen] != '\t' && line[wordlen] != '\r' && in imap_state_capability_resp() 923 line[wordlen] != '\n';) in imap_state_capability_resp() 924 wordlen++; in imap_state_capability_resp() 927 if(wordlen == 8 && !memcmp(line, "STARTTLS", 8)) in imap_state_capability_resp() 931 else if(wordlen in imap_state_capability_resp() [all...] |
H A D | curl_sasl.h | 134 #define sasl_mech_equal(line, wordlen, mech) \ 135 (wordlen == (sizeof(mech) - 1) / sizeof(char) && \ 136 !memcmp(line, mech, wordlen))
|
H A D | smtp.c | 927 size_t wordlen; in smtp_state_ehlo_resp() local 942 for(wordlen = 0; wordlen < len && line[wordlen] != ' ' && in smtp_state_ehlo_resp() 943 line[wordlen] != '\t' && line[wordlen] != '\r' && in smtp_state_ehlo_resp() 944 line[wordlen] != '\n';) in smtp_state_ehlo_resp() 945 wordlen++; in smtp_state_ehlo_resp() 948 mechbit = Curl_sasl_decode_mech(line, wordlen, &llen); in smtp_state_ehlo_resp() 949 if(mechbit && llen == wordlen) in smtp_state_ehlo_resp() [all...] |
H A D | pop3.c | 728 size_t wordlen; in pop3_state_capa_resp() local 743 for(wordlen = 0; wordlen < len && line[wordlen] != ' ' && in pop3_state_capa_resp() 744 line[wordlen] != '\t' && line[wordlen] != '\r' && in pop3_state_capa_resp() 745 line[wordlen] != '\n';) in pop3_state_capa_resp() 746 wordlen++; in pop3_state_capa_resp() 749 mechbit = Curl_sasl_decode_mech(line, wordlen, &llen); in pop3_state_capa_resp() 750 if(mechbit && llen == wordlen) in pop3_state_capa_resp() [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | atrac3plus.c | 763 int i, ch_num, qu, wordlen, codetab, tab_index, num_specs; in decode_spectrum() local 779 wordlen = chan->qu_wordlen[qu]; in decode_spectrum() 781 if (wordlen) { in decode_spectrum() 783 codetab = atrac3p_ct_restricted_to_full[chan->table_type][wordlen - 1][codetab]; in decode_spectrum() 785 tab_index = (chan->table_type * 8 + codetab) * 7 + wordlen - 1; in decode_spectrum()
|
Completed in 9 milliseconds