Searched refs:curval (Results 1 – 6 of 6) sorted by relevance
/third_party/openssl/crypto/ |
D | ex_data.c | 422 void *curval; in CRYPTO_alloc_ex_data() local 424 curval = CRYPTO_get_ex_data(ad, idx); in CRYPTO_alloc_ex_data() 426 if (curval != NULL) in CRYPTO_alloc_ex_data()
|
/third_party/node/deps/openssl/openssl/crypto/ |
D | ex_data.c | 424 void *curval; in CRYPTO_alloc_ex_data() local 426 curval = CRYPTO_get_ex_data(ad, idx); in CRYPTO_alloc_ex_data() 428 if (curval != NULL) in CRYPTO_alloc_ex_data()
|
/third_party/ffmpeg/libavcodec/ |
D | j2kenc.c | 255 int sp = -1, curval = 0; in tag_tree_code() local 263 if (curval > node->temp_val) in tag_tree_code() 264 node->temp_val = curval; in tag_tree_code() 266 curval = node->temp_val; in tag_tree_code() 270 put_bits(s, 0, threshold - curval); in tag_tree_code() 271 curval = threshold; in tag_tree_code() 273 put_bits(s, 0, node->val - curval); in tag_tree_code() 274 curval = node->val; in tag_tree_code() 281 node->temp_val = curval; in tag_tree_code()
|
D | jpeg2000dec.c | 172 int sp = -1, curval = 0; in tag_tree_decode() local 185 curval = node->val; in tag_tree_decode() 187 curval = stack[sp]->val; in tag_tree_decode() 189 while (curval < threshold && sp >= 0) { in tag_tree_decode() 190 if (curval < stack[sp]->val) in tag_tree_decode() 191 curval = stack[sp]->val; in tag_tree_decode() 192 while (curval < threshold) { in tag_tree_decode() 198 curval++; in tag_tree_decode() 202 stack[sp]->val = curval; in tag_tree_decode() 205 return curval; in tag_tree_decode()
|
/third_party/curl/lib/ |
D | cf-socket.c | 376 int curval = 0; in Curl_sndbufset() local 377 int curlen = sizeof(curval); in Curl_sndbufset() 392 if(getsockopt(sockfd, SOL_SOCKET, SO_SNDBUF, (char *)&curval, &curlen) == 0) in Curl_sndbufset() 393 if(curval > val) in Curl_sndbufset()
|
/third_party/ltp/scripts/ |
D | checkpatch.pl | 3518 my $curval = $2; 3533 ($prevval cmp $curval) > 0) {
|