/third_party/boost/tools/bcp/ |
D | README.md | 1 …![Build Status](https://travis-ci.org/boostorg/bcp.svg?branch=develop)](https://travis-ci.org/boos… 4 The bcp utility is a tool for extracting subsets of Boost, it's useful for Boost authors who want t… 7 bcp can also report on which parts of Boost your code is dependent on, and what licences are used b… 9 The full documentation is available on [boost.org](http://www.boost.org/doc/libs/release/tools/bcp). 13 …bcp.svg?branch=master)](https://travis-ci.org/boostorg/bcp) | [![Build Status](https://travis-ci… 19 … requests can be reported through the [Gitub issue tracker](https://github.com/boostorg/bcp/issues) 20 (see [open issues](https://github.com/boostorg/bcp/issues) and 21 [closed issues](https://github.com/boostorg/bcp/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed)). 23 You can submit your changes through a [pull request](https://github.com/boostorg/bcp/pulls).
|
D | Jamfile.v2 | 5 exe bcp 19 bcp 29 bcp
|
/third_party/icu/icu4c/source/test/intltest/ |
D | punyref.cpp | 88 #define flagged(bcp) ((punycode_uint)(bcp) - 65 < 26) argument 96 static char encode_basic(punycode_uint bcp, int flag) in encode_basic() argument 98 bcp -= (bcp - 97 < 26) << 5; in encode_basic() 99 return (char) bcp + ((!flag && (bcp - 65 < 26)) << 5); in encode_basic()
|
/third_party/boost/tools/bcp/doc/ |
D | bcp.qbk | 18 The bcp utility is a tool for extracting subsets of Boost, it's useful for Boost authors who want t… 21 bcp can also report on which parts of Boost your code is dependent on, and what licences are used b… 28 bcp scoped_ptr /foo 34 bcp boost/regex.hpp /foo 42 bcp regex /foo 49 bcp --namespace=myboost --namespace-alias regex config build /foo 58 bcp --scan --boost=/boost foo.cpp bar.cpp boost 64 bcp --report regex.hpp boost-regex-report.html 76 bcp --list \[options\] module-list 82 bcp \[options\] module-list output-path [all …]
|
D | Jamfile.v2 | 8 xml bcp : bcp.qbk ; 11 bcp
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/stringprep/ |
D | PunycodeReference.java | 99 private static boolean flagged(int bcp){ in flagged() argument 100 return ((bcp) - 65 < 26); in flagged() 109 private static char encode_basic(int bcp, int flag) in encode_basic() argument 111 bcp -= (((bcp - 97) < 26) ? 1 :0 ) << 5; in encode_basic() 112 boolean mybcp = (bcp - 65 < 26); in encode_basic() 113 return (char) (bcp + (((flag==0) && mybcp ) ? 1 : 0 ) << 5); in encode_basic()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/ |
D | PunycodeReference.java | 96 private static boolean flagged(int bcp){ in flagged() argument 97 return ((bcp) - 65 < 26); in flagged() 106 private static char encode_basic(int bcp, int flag) in encode_basic() argument 108 bcp -= (((bcp - 97) < 26) ? 1 :0 ) << 5; in encode_basic() 109 boolean mybcp = (bcp - 65 < 26); in encode_basic() 110 return (char) (bcp + (((flag==0) && mybcp ) ? 1 : 0 ) << 5); in encode_basic()
|
/third_party/boost/tools/ |
D | Jamfile.v2 | 21 bcp//bcp
|
/third_party/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_cs.c | 207 struct brw_program *bcp = brw_program(prog); in brw_cs_precompile() local 214 bool success = brw_codegen_cs_prog(brw, bcp, &key); in brw_cs_precompile()
|
/third_party/libcoap/src/ |
D | coap_tinydtls.c | 960 char *bcp = str ? strstr((const char*)str, begstr) : NULL; in pem_decode_mem_asn1() local 961 char *tcp = bcp ? strstr(bcp, "-----END ") : NULL; in pem_decode_mem_asn1() 963 if (bcp && tcp) { in pem_decode_mem_asn1() 964 bcp += strlen(begstr); in pem_decode_mem_asn1() 965 return pem_base64_decode ((const uint8_t *)bcp, tcp - bcp); in pem_decode_mem_asn1()
|
/third_party/boost/tools/bcp/test/ |
D | Jamfile.v2 | 21 bcp-test
|
/third_party/boost/more/getting_started/detail/ |
D | distro.rst | 23 **tools**\ |//| ...........\ *Utilities, e.g. Boost.Build, quickbook, bcp*
|
/third_party/boost/doc/pdf/ |
D | Jamfile.v2 | 100 ../../tools/bcp/doc//standalone
|
/third_party/boost/status/ |
D | Jamfile.v2 | 202 for local tooldir in bcp check_build quickbook
|
/third_party/libpsl/src/ |
D | psl.c | 394 #define flagged(bcp) ((punycode_uint)(bcp) - 65 < 26) argument
|
/third_party/optimized-routines/math/test/traces/ |
D | sincosf.txt | 2086 0x1.3095bcp-8 2179 0x1.3287bcp-6 5186 0x1.9790bcp-10 7010 -0x1.7884bcp-7 7059 -0x1.7136bcp-6 7472 0x1.324bcp-6 8868 0x1.1369bcp-2 8926 0x1.4233bcp-7 9359 -0x1.9190bcp+1 9685 -0x1.9190bcp+1 [all …]
|
/third_party/boost/ |
D | Jamroot | 143 # Backslash because of `bcp --namespace`
|
/third_party/iptables/iptables/ |
D | nft.c | 820 struct nft_chain **bcp; in __nft_xt_fake_builtin_chains() local 827 bcp = h->cache->table[t->type].base_chains; in __nft_xt_fake_builtin_chains() 829 if (bcp[t->chains[i].hook]) in __nft_xt_fake_builtin_chains()
|
/third_party/boost/libs/unordered/doc/ |
D | changes.qbk | 195 Make namespaces in macros compatible with `bcp` custom namespaces.
|
/third_party/musl/libc-test/report_base/ |
D | REPORT | 136 …a8641p+0) want 0x1.2a126c6980018p+2 got 0x1.2a126c6980019p+2 ulperr 0.500 = 0x1p+0 + -0x1.0028bcp-1 232 …3) want 0x1.a61d29434fc14p+1023 got 0x1.a61d29434fc13p+1023 ulperr -0.500 = -0x1p+0 + 0x1.0000bcp-1 306 …a8641p+0) want 0x1.2a126c6980018p+2 got 0x1.2a126c6980019p+2 ulperr 0.500 = 0x1p+0 + -0x1.0028bcp-1 402 …3) want 0x1.a61d29434fc14p+1023 got 0x1.a61d29434fc13p+1023 ulperr -0.500 = -0x1p+0 + 0x1.0000bcp-1
|
/third_party/harfbuzz/perf/texts/ |
D | en-words.txt | 944 bcp
|
/third_party/skia/third_party/externals/harfbuzz/perf/texts/ |
D | en-words.txt | 944 bcp
|