Searched refs:scode (Results 1 – 6 of 6) sorted by relevance
/third_party/curl/tests/libtest/ |
D | lib586.c | 133 CURLSHcode scode = CURLSHE_OK; in test() local 159 if(CURLSHE_OK == scode) { in test() 161 scode = curl_share_setopt(share, CURLSHOPT_LOCKFUNC, my_lock); in test() 163 if(CURLSHE_OK == scode) { in test() 165 scode = curl_share_setopt(share, CURLSHOPT_UNLOCKFUNC, my_unlock); in test() 167 if(CURLSHE_OK == scode) { in test() 169 scode = curl_share_setopt(share, CURLSHOPT_USERDATA, &user); in test() 171 if(CURLSHE_OK == scode) { in test() 173 scode = curl_share_setopt(share, CURLSHOPT_SHARE, in test() 177 if(CURLSHE_OK != scode) { in test() [all …]
|
D | lib506.c | 176 CURLSHcode scode = CURLSHE_OK; in test() local 206 if(CURLSHE_OK == scode) { in test() 208 scode = curl_share_setopt(share, CURLSHOPT_LOCKFUNC, my_lock); in test() 210 if(CURLSHE_OK == scode) { in test() 212 scode = curl_share_setopt(share, CURLSHOPT_UNLOCKFUNC, my_unlock); in test() 214 if(CURLSHE_OK == scode) { in test() 216 scode = curl_share_setopt(share, CURLSHOPT_USERDATA, &user); in test() 218 if(CURLSHE_OK == scode) { in test() 220 scode = curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_COOKIE); in test() 222 if(CURLSHE_OK == scode) { in test() [all …]
|
/third_party/glib/glib/pcre/ |
D | pcre_compile.c | 2366 const pcre_uchar *scode; in could_be_empty_branch() local 2371 for (scode = cd->start_workspace; scode < cd->hwm; scode += LINK_SIZE) in could_be_empty_branch() 2372 if (GET(scode, 0) == code + 1 - cd->start_code) return TRUE; in could_be_empty_branch() 2377 scode = cd->start_code + GET(code, 1); in could_be_empty_branch() 2378 if (GET(scode, 1) == 0) return TRUE; /* Unclosed */ in could_be_empty_branch() 2384 if (could_be_empty_branch(scode, endcode, utf, cd)) in could_be_empty_branch() 2389 scode += GET(scode, 1); in could_be_empty_branch() 2391 while (*scode == OP_ALT); in could_be_empty_branch() 5422 pcre_uchar *scode = bracode; in compile_branch() local 5425 if (could_be_empty_branch(scode, ketcode, utf, cd)) in compile_branch() [all …]
|
D | pcre_exec.c | 1066 const pcre_uchar *scode = ecode; in match() local 1067 if (*scode != OP_ONCE) /* If not at start, find it */ in match() 1069 while (*scode == OP_ALT) scode += GET(scode, 1); in match() 1070 scode -= GET(scode, 1); in match() 1072 if (md->once_target == scode) rrc = MATCH_NOMATCH; in match()
|
/third_party/gettext/gettext-tools/src/ |
D | x-lisp.c | 274 enum syntax_code scode; /* syntax code */ member 284 p->scode = (c == EOF ? syntax_eof : syntax_code_of (c)); in read_char_syntax() 409 switch (curr.scode) in read_token() 419 if (curr.scode == syntax_eof) in read_token() 461 if (curr.scode != syntax_whitespace || read_preserve_whitespace) in read_token() 941 switch (curr.scode) in read_object() 1325 first.scode = syntax_single_esc; in read_object()
|
/third_party/pcre2/pcre2/src/ |
D | pcre2_compile.c | 8305 PCRE2_SPTR scode = first_significant_code( in is_anchored() local 8307 int op = *scode; in is_anchored() 8314 if (!is_anchored(scode, bracket_map, cb, atomcount, inassert)) in is_anchored() 8323 int n = GET2(scode, 1+LINK_SIZE); in is_anchored() 8325 if (!is_anchored(scode, new_map, cb, atomcount, inassert)) return FALSE; in is_anchored() 8332 if (!is_anchored(scode, bracket_map, cb, atomcount, TRUE)) return FALSE; in is_anchored() 8339 if (scode[GET(scode,1)] != OP_ALT) return FALSE; in is_anchored() 8340 if (!is_anchored(scode, bracket_map, cb, atomcount, inassert)) in is_anchored() 8348 if (!is_anchored(scode, bracket_map, cb, atomcount + 1, inassert)) in is_anchored() 8362 if (scode[1] != OP_ALLANY || (bracket_map & cb->backref_map) != 0 || in is_anchored() [all …]
|