/third_party/lzma/CPP/7zip/Common/ |
D | CreateCoder.cpp | 336 CCreatedCoder &cod) in CreateCoder_Index() argument 338 cod.IsExternal = false; in CreateCoder_Index() 339 cod.IsFilter = false; in CreateCoder_Index() 340 cod.NumStreams = 1; in CreateCoder_Index() 353 else if (codec.NumStreams == 1) cod.Coder = (ICompressCoder *)p; in CreateCoder_Index() 354 else { cod.Coder2 = (ICompressCoder2 *)p; cod.NumStreams = codec.NumStreams; } in CreateCoder_Index() 363 else if (codec.NumStreams == 1) cod.Coder = (ICompressCoder *)p; in CreateCoder_Index() 364 else { cod.Coder2 = (ICompressCoder2 *)p; cod.NumStreams = codec.NumStreams; } in CreateCoder_Index() 377 cod.IsExternal = true; in CreateCoder_Index() 389 …ESULT res = _externalCodecs->GetCodecs->CreateEncoder(i, &IID_ICompressCoder, (void **)&cod.Coder); in CreateCoder_Index() [all …]
|
D | CreateCoder.h | 166 CCreatedCoder &cod); 171 CCreatedCoder &cod); 177 CCreatedCoder &cod); 182 CCreatedCoder &cod);
|
/third_party/typescript/tests/baselines/reference/ |
D | intersectionAndUnionTypes.js | 14 var cod: C | D; variable 26 x = cod; 30 cod = x; 35 y = cod; 39 cod = y; // Ok 50 var cod; variable 60 x = cod; 64 cod = x; 68 y = cod; 72 cod = y; // Ok
|
D | intersectionAndUnionTypes.types | 35 var cod: C | D; 36 >cod : C | D 79 x = cod; 80 >x = cod : C | D 82 >cod : C | D 99 cod = x; 100 >cod = x : (A & B) | (C & D) 101 >cod : C | D 119 y = cod; 120 >y = cod : C | D [all …]
|
D | intersectionAndUnionTypes.symbols | 49 var cod: C | D; 50 >cod : Symbol(cod, Decl(intersectionAndUnionTypes.ts, 12, 3)) 96 x = cod; 98 >cod : Symbol(cod, Decl(intersectionAndUnionTypes.ts, 12, 3)) 112 cod = x; 113 >cod : Symbol(cod, Decl(intersectionAndUnionTypes.ts, 12, 3)) 128 y = cod; 130 >cod : Symbol(cod, Decl(intersectionAndUnionTypes.ts, 12, 3)) 144 cod = y; // Ok 145 >cod : Symbol(cod, Decl(intersectionAndUnionTypes.ts, 12, 3))
|
D | intersectionAndUnionTypes.errors.txt | 57 var cod: C | D; 81 x = cod; 104 cod = x; 128 y = cod; 148 cod = y; // Ok
|
/third_party/lzma/CPP/7zip/Archive/7z/ |
D | 7zEncode.cpp | 158 CCreatedCoder cod; in CreateMixerCoder() local 164 (unsigned)methodFull.CodecIndex, true, cod)) in CreateMixerCoder() 170 methodFull.Id, true, cod)) in CreateMixerCoder() 173 if (!cod.Coder && !cod.Coder2) in CreateMixerCoder() 179 if (cod.NumStreams != methodFull.NumStreams) in CreateMixerCoder() 182 CMyComPtr<IUnknown> encoderCommon = cod.Coder ? (IUnknown *)cod.Coder : (IUnknown *)cod.Coder2; in CreateMixerCoder() 239 _mixer->AddCoder(cod); in CreateMixerCoder() 589 NCoderMixer2::CCoderStreamsInfo cod; 591 cod.NumStreams = methodFull.NumStreams; 603 else if (cod.NumStreams != 0) [all …]
|
D | 7zDecode.cpp | 308 CCreatedCoder cod; 311 coderInfo.MethodID, false, cod)) 315 if (!cod.Coder) 322 if (!cod.Coder2 || cod.NumStreams != coderInfo.NumStreams) 325 _mixer->AddCoder(cod);
|
/third_party/typescript/tests/cases/conformance/types/intersection/ |
D | intersectionAndUnionTypes.ts | 13 var cod: C | D; variable 25 x = cod; 29 cod = x; 34 y = cod; 38 cod = y; // Ok
|
/third_party/lzma/CPP/7zip/Archive/Common/ |
D | CoderMixer2.cpp | 325 void CMixerST::AddCoder(const CCreatedCoder &cod) in AddCoder() argument 327 IsFilter_Vector.Add(cod.IsFilter); in AddCoder() 328 IsExternal_Vector.Add(cod.IsExternal); in AddCoder() 331 c2.NumStreams = cod.NumStreams; in AddCoder() 332 c2.Coder = cod.Coder; in AddCoder() 333 c2.Coder2 = cod.Coder2; in AddCoder() 344 IUnknown *unk = (cod.Coder ? (IUnknown *)cod.Coder : (IUnknown *)cod.Coder2); in AddCoder() 930 void CMixerMT::AddCoder(const CCreatedCoder &cod) in AddCoder() argument 932 IsFilter_Vector.Add(cod.IsFilter); in AddCoder() 933 IsExternal_Vector.Add(cod.IsExternal); in AddCoder() [all …]
|
D | CoderMixer2.h | 269 virtual void AddCoder(const CCreatedCoder &cod) = 0; 336 virtual void AddCoder(const CCreatedCoder &cod) Z7_override; 427 virtual void AddCoder(const CCreatedCoder &cod) Z7_override;
|
/third_party/lzma/Asm/x86/ |
D | LzmaDecOpt.asm | 72 ; x5 cod 85 cod equ x5 define 153 shl cod, 8 156 ; or cod, t0 182 sub cod, range 197 cmp cod, range 227 mov t1, cod 228 sub cod, range 249 cmovb cod, t1 266 cmovb cod, t1 [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | evrcdec.c | 433 static void decode_8_pulses_35bits(const uint16_t *fixed_index, float *cod) in decode_8_pulses_35bits() argument 443 cod[pos1] = (fixed_index[i] & 0x80) ? -1.0 : 1.0; in decode_8_pulses_35bits() 446 cod[pos2] = -cod[pos1]; in decode_8_pulses_35bits() 448 cod[pos2] += cod[pos1]; in decode_8_pulses_35bits() 454 cod[pos1] = (fixed_index[3] & 0x100) ? -1.0 : 1.0; in decode_8_pulses_35bits() 455 cod[pos2] = (fixed_index[3] & 0x80 ) ? -1.0 : 1.0; in decode_8_pulses_35bits() 458 static void decode_3_pulses_10bits(uint16_t fixed_index, float *cod) in decode_3_pulses_10bits() argument 466 cod[pos] += sign; in decode_3_pulses_10bits() 468 cod[pos] -= sign; in decode_3_pulses_10bits() 470 cod[pos] += sign; in decode_3_pulses_10bits()
|
/third_party/lzma/Asm/arm64/ |
D | LzmaDecOpt.S | 112 # x5 cod 138 #define cod w5 macro 198 orr cod, t0, cod, lsl 8 251 p2_sub cod, range 274 cmp cod, range 327 subs t1, cod, t0 346 cmovae cod, t1 780 LOAD_LZMA_PAIR range, cod, offset_range 951 subs t0, cod, range 954 csel cod, cod, t0, mi
|
/third_party/lzma/CPP/7zip/UI/Console/ |
D | Main.cpp | 1125 const CCodecInfo &cod = *g_Codecs[i]; in Main2() local 1129 if (cod.NumStreams == 1) in Main2() 1132 so << cod.NumStreams; in Main2() 1134 so << (char)(cod.CreateEncoder ? 'E' : ' '); in Main2() 1135 so << (char)(cod.CreateDecoder ? 'D' : ' '); in Main2() 1136 so << (char)(cod.IsFilter ? 'F' : ' '); in Main2() 1139 PrintHexId(so, cod.Id); in Main2() 1140 so << ' ' << cod.Name << endl; in Main2()
|
/third_party/skia/third_party/externals/brotli/ |
D | .gitignore | 12 *.py[cod]
|
/third_party/lzma/CPP/7zip/UI/Common/ |
D | LoadCodecs.cpp | 1304 const CCodecInfo &cod = *g_Codecs[i]; in Get_CodecsInfoUser_Vector() local 1306 u.EncoderIsAssigned = (cod.CreateEncoder != NULL); in Get_CodecsInfoUser_Vector() 1307 u.DecoderIsAssigned = (cod.CreateDecoder != NULL); in Get_CodecsInfoUser_Vector() 1309 u.IsFilter = cod.IsFilter; in Get_CodecsInfoUser_Vector() 1310 u.NumStreams = cod.NumStreams; in Get_CodecsInfoUser_Vector() 1311 u.Name = cod.Name; in Get_CodecsInfoUser_Vector()
|
D | Bench.cpp | 1855 CCreatedCoder cod; 1856 …reateCoder_Index(EXTERNAL_CODECS_LOC_VARS (unsigned)codecIndex, true, encoder._encoderFilter, cod)) 1857 encoder._encoder = cod.Coder; 1868 CCreatedCoder cod; 1870 RINOK(CreateCoder_Id(EXTERNAL_CODECS_LOC_VARS methodId, false, encoder._decoderFilter, cod)) 1871 decoder = cod.Coder;
|
/third_party/node/tools/gyp/ |
D | .gitignore | 3 *.py[cod]
|
/third_party/python/Lib/test/ |
D | mime.types | 369 application/vnd.etsi.iptvsad-cod+xml 848 application/vnd.sss-cod
|
/third_party/skia/third_party/externals/icu/source/data/curr/ |
D | ro.txt | 952 "cod monetar de test",
|
/third_party/icu/icu4c/source/data/curr/ |
D | ro.txt | 952 "cod monetar de test",
|
/third_party/icu/ohos_icu4j/src/main/tests/resources/ohos/global/icu/dev/data/unicode/ |
D | IdnaTestV2.txt | 5662 .-ࢣ。; .-ࢣ.; [B1, V3]; xn--ce6h.xn----cod.; ; ; # .-ࢣ. 5663 .-ࢣ。; .-ࢣ.; [B1, V3]; xn--ce6h.xn----cod.; ; ; # .-ࢣ. 5664 xn--ce6h.xn----cod.; .-ࢣ.; [B1, V3]; xn--ce6h.xn----cod.; ; ; # .-ࢣ.
|
/third_party/icu/icu4c/source/test/testdata/ |
D | IdnaTestV2.txt | 5666 .-\u08A3。; .-\u08A3.; [B1, V3]; xn--ce6h.xn----cod.; ; ; # .-ࢣ. 5667 .-\u08A3。; .-\u08A3.; [B1, V3]; xn--ce6h.xn----cod.; ; ; # .-ࢣ. 5668 xn--ce6h.xn----cod.; .-\u08A3.; [B1, V3]; xn--ce6h.xn----cod.; ; ; # .-ࢣ.
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/unicode/ |
D | IdnaTestV2.txt | 5666 .-\u08A3。; .-\u08A3.; [B1, V3]; xn--ce6h.xn----cod.; ; ; # .-ࢣ. 5667 .-\u08A3。; .-\u08A3.; [B1, V3]; xn--ce6h.xn----cod.; ; ; # .-ࢣ. 5668 xn--ce6h.xn----cod.; .-\u08A3.; [B1, V3]; xn--ce6h.xn----cod.; ; ; # .-ࢣ.
|