Home
last modified time | relevance | path

Searched refs:skip (Results 126 - 150 of 1153) sorted by relevance

12345678910>>...47

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/GSYM/
H A DInlineInfo.cpp65 /// Used during the InlineInfo::lookup() call to quickly skip child InlineInfo
76 static bool skip(DataExtractor &Data, uint64_t &Offset, bool SkippedRanges) { in skip() function
78 if (AddressRanges::skip(Data, Offset) == 0) in skip()
86 while (skip(Data, Offset, false /* SkippedRanges */)) in skip()
116 // not, quickly skip this InlineInfo object and all its children. in lookup()
118 skip(Data, Offset, true /* SkippedRanges */); in lookup()
/third_party/skia/src/core/
H A DSkReadBuffer.h64 const void* skip(size_t size);
65 const void* skip(size_t count, size_t size); // does safe multiply
69 return static_cast<const T*>(this->skip(sizeof(T))); in skipT()
72 return static_cast<const T*>(this->skip(count, sizeof(T))); in skipT()
/third_party/ffmpeg/libavcodec/
H A Descape124.c206 superblocks_per_row = avctx->width / 8, skip = -1; in escape124_decode_frame() local
299 if (skip == -1) { in escape124_decode_frame()
300 // Note that this call will make us skip the rest of the blocks in escape124_decode_frame()
302 skip = decode_skip_count(&gb); in escape124_decode_frame()
305 if (skip) { in escape124_decode_frame()
361 skip--; in escape124_decode_frame()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/translit/
H A DRegexUtilitiesTest.java70 boolean skip = TestFmwk.getExhaustiveness() < 10; in TestCharacters()
72 if (cp > 0xFF && skip && (cp % 37 != 0)) { in TestCharacters()
102 final boolean skip = TestFmwk.getExhaustiveness() < 10; in TestUnicodeProperties()
105 if (skip && (propNum % 5 != 0)) { in TestUnicodeProperties()
111 if (skip) { // only test first if not exhaustive in TestUnicodeProperties()
/third_party/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
H A DRegexUtilitiesTest.java67 boolean skip = TestFmwk.getExhaustiveness() < 10; in TestCharacters()
70 if (cp > 0xFF && skip && (cp % 37 != 0) && cp != 0x1fffe) { in TestCharacters()
107 final boolean skip = TestFmwk.getExhaustiveness() < 10; in TestUnicodeProperties()
110 if (skip && (propNum % 5 != 0)) { in TestUnicodeProperties()
116 if (skip) { // only test first if not exhaustive in TestUnicodeProperties()
/third_party/node/test/parallel/
H A Dtest-cluster-dgram-ipv6only.js5 common.skip('no IPv6 support');
7 common.skip('dgram clustering is currently not supported on windows.');
H A Dtest-https-localaddress.js26 common.skip('missing crypto');
29 common.skip('platform-specific test.');
H A Dtest-tls-ecdh-auto.js8 common.skip('missing crypto');
11 common.skip('missing openssl-cli');
H A Dtest-tls-ecdh.js27 common.skip('missing crypto');
30 common.skip('missing openssl-cli');
H A Dtest-dgram-udp6-link-local-address.js4 common.skip('no IPv6 support');
24 common.skip('cannot find any IPv6 interfaces with a link local address');
H A Dtest-fs-copyfile-respect-permissions.js9 common.skip('as this test should not be run as `root`');
12 common.skip('IBMi has a different access permission mechanism');
H A Dtest-tls-ecdh-multiple.js8 common.skip('missing crypto');
11 common.skip('missing openssl-cli');
H A Dtest-tls-enable-trace.js4 if (!common.hasCrypto) common.skip('missing crypto');
18 return common.skip('no SSL_trace() compiled into openssl');
/third_party/node/test/async-hooks/
H A Dtest-crypto-randomBytes.js5 common.skip('missing crypto');
7 common.skip('Worker bootstrapping works differently -> different async IDs');
H A Dtest-crypto-pbkdf2.js5 common.skip('missing crypto');
7 common.skip('Worker bootstrapping works differently -> different async IDs');
H A Dtest-fseventwrap.js11 common.skip('Worker bootstrapping works differently -> different async IDs');
14 common.skip('IBMi does not support fs.watch()');
H A Dtest-graph.signal.js5 common.skip('no signals on Windows');
7 common.skip('No signal handling available in Workers');
H A Dtest-graph.tls-write.js5 common.skip('missing crypto');
8 common.skip('IPv6 support required');
/third_party/pcre2/pcre2/
H A DRunTest221 skip=
300 skip="$skip `expr "$1" : '~\([0-9]*\)*$'`"
367 test8=skip
368 test16=skip
369 test32=skip
474 for i in $skip; do eval do$i=no; done
485 skip) continue;;
/third_party/toybox/toys/pending/
H A Dcrond.c123 static void fillarray(char *dst, int start, int end, int skip) in fillarray() argument
131 if (!skip) skip = 1; in fillarray()
135 sk = skip; in fillarray()
151 int start, end, skip = 0; in parse_and_fillarray() local
156 if ((skip = getval(ptr, min, (min ? max: max-1))) < 0) goto ERROR; in parse_and_fillarray()
162 fillarray(dst, 0, max-1, skip); in parse_and_fillarray()
186 fillarray(dst, start, end, skip); in parse_and_fillarray()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
H A Dtls_internal.c419 int ret = -1, skip = 0; in tls_connection_prf() local
424 skip = tls_get_keyblock_size(conn); in tls_connection_prf()
425 if (skip < 0) in tls_connection_prf()
427 tmp_out = os_malloc(skip + out_len); in tls_connection_prf()
437 _out, skip + out_len); in tls_connection_prf()
444 _out, skip + out_len); in tls_connection_prf()
448 os_memcpy(out, _out + skip, out_len); in tls_connection_prf()
449 bin_clear_free(tmp_out, skip); in tls_connection_prf()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
H A Dtls_internal.c419 int ret = -1, skip = 0; in tls_connection_prf() local
424 skip = tls_get_keyblock_size(conn); in tls_connection_prf()
425 if (skip < 0) in tls_connection_prf()
427 tmp_out = os_malloc(skip + out_len); in tls_connection_prf()
437 _out, skip + out_len); in tls_connection_prf()
444 _out, skip + out_len); in tls_connection_prf()
448 os_memcpy(out, _out + skip, out_len); in tls_connection_prf()
449 bin_clear_free(tmp_out, skip); in tls_connection_prf()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DYAMLParser.cpp397 void skip(uint32_t Distance);
954 void Scanner::skip(uint32_t Distance) { in skip() function in Scanner
1046 // This may skip more than one byte, thus Column is only incremented in skipComment()
1059 skip(1); in scanToNextToken()
1148 skip(3); in scanDocumentIndicator()
1158 skip(1); in scanFlowCollectionStart()
1177 skip(1); in scanFlowCollectionEnd()
1190 skip(1); in scanFlowEntry()
1202 skip(1); in scanBlockEntry()
1217 skip( in scanKey()
1805 void Stream::skip() { skip() function in Stream
2288 bool Document::skip() { skip() function in Document
[all...]
/third_party/node/test/addons/openssl-client-cert-engine/
H A Dtest.js6 common.skip('missing crypto');
15 common.skip('no client cert engine');
/third_party/skia/third_party/externals/brotli/java/org/brotli/dec/
H A DDictionaryData.java48 int skip = skipFlip.charAt(i) - 36; in unpackDictionaryData()
50 offset += skip; in unpackDictionaryData()

Completed in 18 milliseconds

12345678910>>...47