/external/python/cpython2/Modules/cjkcodecs/ |
D | _codecs_iso2022.c | 593 DBCHAR coded; in ksx1001_encoder() local 596 TRYMAP_ENC(cp949, coded, *data) in ksx1001_encoder() 597 if (!(coded & 0x8000)) in ksx1001_encoder() 598 return coded; in ksx1001_encoder() 631 DBCHAR coded; in jisx0208_encoder() local 636 else TRYMAP_ENC(jisxcommon, coded, *data) { in jisx0208_encoder() 637 if (!(coded & 0x8000)) in jisx0208_encoder() 638 return coded; in jisx0208_encoder() 670 DBCHAR coded; in jisx0212_encoder() local 673 TRYMAP_ENC(jisxcommon, coded, *data) { in jisx0212_encoder() [all …]
|
/external/python/cpython3/Modules/cjkcodecs/ |
D | _codecs_iso2022.c | 595 DBCHAR coded; in ksx1001_encoder() local 598 if (TRYMAP_ENC(cp949, coded, *data)) { in ksx1001_encoder() 599 if (!(coded & 0x8000)) in ksx1001_encoder() 600 return coded; in ksx1001_encoder() 634 DBCHAR coded; in jisx0208_encoder() local 639 else if (TRYMAP_ENC(jisxcommon, coded, *data)) { in jisx0208_encoder() 640 if (!(coded & 0x8000)) in jisx0208_encoder() 641 return coded; in jisx0208_encoder() 673 DBCHAR coded; in jisx0212_encoder() local 676 if (TRYMAP_ENC(jisxcommon, coded, *data)) { in jisx0212_encoder() [all …]
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/ |
D | Type.java | 337 static int size(final int coded) { in size() argument 338 return coded & 3; in size() 341 static int consumed(final int coded) { in consumed() argument 342 return coded >> 2; in consumed() 358 final int coded = getTypeSize(signature.substring(index)); in getArgumentTypesSize() local 359 res += size(coded); in getArgumentTypesSize() 360 index += consumed(coded); in getArgumentTypesSize()
|
/external/v4l2_codec2/components/ |
D | V4L2DecodeInterface.cpp | 92 const C2P<C2StreamColorAspectsInfo::input>& coded) { in MergedColorAspectsSetter() argument 94 merged.set().range = coded.v.range == RANGE_UNSPECIFIED ? def.v.range : coded.v.range; in MergedColorAspectsSetter() 96 coded.v.primaries == PRIMARIES_UNSPECIFIED ? def.v.primaries : coded.v.primaries; in MergedColorAspectsSetter() 98 coded.v.transfer == TRANSFER_UNSPECIFIED ? def.v.transfer : coded.v.transfer; in MergedColorAspectsSetter() 99 merged.set().matrix = coded.v.matrix == MATRIX_UNSPECIFIED ? def.v.matrix : coded.v.matrix; in MergedColorAspectsSetter()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | fact_op.cc | 90 string coded = facts[context->env()->NowMicros() % count]; in Compute() local 91 E(&coded); in Compute() 92 output() = coded; in Compute()
|
/external/igt-gpu-tools/lib/ |
D | igt.cocci | 9 // Replace open-coded augmented igt_assert/skip/require with macro versions 95 // Replace open-coded igt_swap() 105 // Replace open-coded min() 118 // Replace open-coded max() 217 // replace open-coded do_ioctl
|
/external/libwebsockets/lib/misc/ |
D | base64-decode.c | 223 static const char * const coded[] = { 248 if (n != strlen(coded[test]) || strcmp(buf, coded[test])) { 255 n = lws_b64_decode_string(coded[test], buf, sizeof buf);
|
/external/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/WellKnownTypes/ |
D | WrappersTest.cs | 336 var coded = new CodedOutputStream(stream); in MergingStreamExplicitValue() 337 coded.WriteTag(wrapperTag); in MergingStreamExplicitValue() 338 coded.WriteLength(2); // valueTag + a value 0, each one byte in MergingStreamExplicitValue() 339 coded.WriteTag(valueTag); in MergingStreamExplicitValue() 340 coded.WriteInt32(0); in MergingStreamExplicitValue() 341 coded.Flush(); in MergingStreamExplicitValue()
|
/external/protobuf/csharp/src/Google.Protobuf.Test/WellKnownTypes/ |
D | WrappersTest.cs | 336 var coded = new CodedOutputStream(stream); in MergingStreamExplicitValue() 337 coded.WriteTag(wrapperTag); in MergingStreamExplicitValue() 338 coded.WriteLength(2); // valueTag + a value 0, each one byte in MergingStreamExplicitValue() 339 coded.WriteTag(valueTag); in MergingStreamExplicitValue() 340 coded.WriteInt32(0); in MergingStreamExplicitValue() 341 coded.Flush(); in MergingStreamExplicitValue()
|
/external/autotest/client/site_tests/video_AVAnalysis/ |
D | control.vp9.720 | 7 PURPOSE = "Play bar-coded video on ChromeOS DUT so it can be recorded for analysis." 19 This test plays a bar-coded video file on DUT so it can be recorded.
|
/external/ms-tpm-20-ref/TPMCmd/tpm/src/crypt/ |
D | CryptRsa.c | 547 TPM2B *coded // IN: the encoded message in RSAES_Decode() argument 553 fail = (coded->size < 11); in RSAES_Decode() 554 fail = (coded->buffer[0] != 0x00) | fail; in RSAES_Decode() 555 fail = (coded->buffer[1] != 0x02) | fail; in RSAES_Decode() 556 for(pSize = 2; pSize < coded->size; pSize++) in RSAES_Decode() 558 if(coded->buffer[pSize] == 0) in RSAES_Decode() 565 fail = (pSize > coded->size) | fail; in RSAES_Decode() 567 if((message->size < (UINT16)(coded->size - pSize)) || fail) in RSAES_Decode() 569 message->size = coded->size - pSize; in RSAES_Decode() 570 memcpy(message->buffer, &coded->buffer[pSize], coded->size - pSize); in RSAES_Decode()
|
/external/webrtc/modules/rtp_rtcp/source/rtcp_packet/ |
D | transport_feedback_unittest.cc | 569 rtc::Buffer coded = feedback_builder.Build(); in TEST() local 572 header.Parse(coded.data(), coded.size()); in TEST() 592 rtc::Buffer coded = feedback_builder.Build(); in TEST() local 595 header.Parse(coded.data(), coded.size()); in TEST()
|
/external/curl/tests/data/ |
D | test861 | 18 # When doing UIDL, we get the default list output hard-coded in the test
|
D | test853 | 18 # When doing LIST, we get the default list output hard-coded in the test
|
D | test707 | 14 # When doing LIST, we get the default list output hard-coded in the test
|
D | test521 | 12 # When doing LIST, we get the default list output hard-coded in the test
|
D | test1153 | 16 # When doing LIST, we get the default list output hard-coded in the test
|
D | test351 | 12 # When doing LIST, we get the default list output hard-coded in the test
|
D | test1319 | 21 # When doing LIST, we get the default list output hard-coded in the test
|
/external/llvm-project/llvm/test/DebugInfo/ |
D | typeunit-header.test | 6 The input file is hand-coded assembler to generate a type unit stub,
|
/external/catch2/CMake/ |
D | MiscFunctions.cmake | 1 #checks that the given hard-coded list contains all headers + sources in the given folder
|
/external/llvm-project/clang/test/Analysis/ |
D | NoReturn.m | 126 // Test that hard-coded Microsoft _wassert name is recognized as a noreturn 136 // Test that hard-coded Android __assert2 name is recognized as a noreturn
|
/external/clang/test/Analysis/ |
D | NoReturn.m | 126 // Test that hard-coded Microsoft _wassert name is recognized as a noreturn 136 // Test that hard-coded Android __assert2 name is recognized as a noreturn
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/ |
D | AVR.td | 64 // Recognize hard coded registers.
|
/external/llvm-project/llvm/lib/Target/AVR/ |
D | AVR.td | 64 // Recognize hard coded registers.
|