/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCDisassembler/ |
H A D | Disassembler.cpp | 103 LLVMDisasmContext *DC = new LLVMDisasmContext( in LLVMCreateDisasmCPUFeatures() 107 if (!DC) in LLVMCreateDisasmCPUFeatures() 110 DC->setCPU(CPU); in LLVMCreateDisasmCPUFeatures() 111 return DC; in LLVMCreateDisasmCPUFeatures() 133 LLVMDisasmContext *DC = static_cast<LLVMDisasmContext *>(DCR); in LLVMDisasmDispose() local 134 delete DC; in LLVMDisasmDispose() 137 /// Emits the comments that are stored in \p DC comment stream. 139 static void emitComments(LLVMDisasmContext *DC, in emitComments() argument 142 StringRef Comments = DC->CommentsToEmit.str(); in emitComments() 144 const MCAsmInfo *MAI = DC in emitComments() 169 getItineraryLatency(LLVMDisasmContext *DC, const MCInst &Inst) getItineraryLatency() argument 194 getLatency(LLVMDisasmContext *DC, const MCInst &Inst) getLatency() argument 230 emitLatency(LLVMDisasmContext *DC, const MCInst &Inst) emitLatency() argument 255 LLVMDisasmContext *DC = static_cast<LLVMDisasmContext *>(DCR); LLVMDisasmInstruction() local 304 LLVMDisasmContext *DC = static_cast<LLVMDisasmContext *>(DCR); LLVMSetDisasmOptions() local 311 LLVMDisasmContext *DC = static_cast<LLVMDisasmContext *>(DCR); LLVMSetDisasmOptions() local 318 LLVMDisasmContext *DC = static_cast<LLVMDisasmContext *>(DCR); LLVMSetDisasmOptions() local 334 LLVMDisasmContext *DC = static_cast<LLVMDisasmContext *>(DCR); LLVMSetDisasmOptions() local 341 LLVMDisasmContext *DC = static_cast<LLVMDisasmContext *>(DCR); LLVMSetDisasmOptions() local [all...] |
/third_party/mesa3d/src/imgui/ |
H A D | imgui.cpp | 2193 window->DC.CursorPosPrevLine.y = window->DC.CursorPos.y - line_height; // Setting those fields so that SetScrollHereY() can properly function after the end of our clipper usage. in SetCursorPosYAndSetupDummyPrevLine() 2194 window->DC.PrevLineSize.y = (line_height - GImGui->Style.ItemSpacing.y); // If we end up needing more accurate data (to e.g. use SameLine) we may as well make the clipper have a fourth step to let user process and display the last item in their list. in SetCursorPosYAndSetupDummyPrevLine() 2195 if (window->DC.ColumnsSet) in SetCursorPosYAndSetupDummyPrevLine() 2196 window->DC.ColumnsSet->LineMinY = window->DC.CursorPos.y; // Setting this so that cell Y position are set properly in SetCursorPosYAndSetupDummyPrevLine() 2466 if (window->DC.NavHideHighlightOneFrame) in RenderNavHighlight() 2665 const ImGuiNavLayer nav_layer = window->DC.NavLayerCurrent; in SetFocusID() 2672 if (window->DC.LastItemId == id) in SetFocusID() 2673 window->NavRectRel[nav_layer] = ImRect(window->DC in SetFocusID() [all...] |
H A D | imgui_widgets.cpp | 139 const ImVec2 text_pos(window->DC.CursorPos.x, window->DC.CursorPos.y + window->DC.CurrentLineTextBaseOffset); in TextUnformatted() 140 const float wrap_pos_x = window->DC.TextWrapPos; in TextUnformatted() 220 const float wrap_width = wrap_enabled ? CalcWrapWidthForPos(window->DC.CursorPos, wrap_pos_x) : 0.0f; in TextUnformatted() 293 bool need_backup = (GImGui->CurrentWindow->DC.TextWrapPos < 0.0f); // Keep existing wrap position if one is already set in TextWrappedV() 321 const ImRect value_bb(window->DC.CursorPos, window->DC.CursorPos + ImVec2(w, label_size.y + style.FramePadding.y*2)); in LabelTextV() 322 const ImRect total_bb(window->DC.CursorPos, window->DC in LabelTextV() [all...] |
H A D | imgui_internal.h | 87 typedef int ImGuiItemStatusFlags; // -> enum ImGuiItemStatusFlags_ // Flags: for DC.LastItemStatusFlags 302 ImGuiButtonFlags_AlignTextBaseLine = 1 << 9, // vertically align button to match text baseline - ButtonEx() only // FIXME: Should be removed and handled by SmallButton(), not possible currently because of DC.CursorPosPrevLine 831 ImRect NavScoringRectScreen; // Rectangle used for scoring, in screen space. Based of window->DC.NavRefRectRel[], modified for directional navigation scoring. 840 int NavIdTabCounter; // == NavWindow->DC.FocusIdxTabCounter at time of NavId processing 1048 // Transient per-window data, reset at the beginning of the frame. This used to be called ImGuiDrawContext, hence the DC variable name in ImGuiWindow. 1176 ImGuiWindowTempData DC; // Temporary per-window data, reset at the beginning of the frame. This used to be called ImGuiDrawContext, hence the "DC" variable name. member 1225 float MenuBarHeight() const { return (Flags & ImGuiWindowFlags_MenuBar) ? DC.MenuBarOffset.y + CalcFontSize() + GImGui->Style.FramePadding.y * 2.0f : 0.0f; } in MenuBarHeight() 1238 void Backup() { ImGuiWindow* window = GImGui->CurrentWindow; LastItemId = window->DC.LastItemId; LastItemStatusFlags = window->DC in ImGuiItemHoveredDataBackup() [all...] |
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_tables.cpp | 326 ImRect outer_rect(outer_window->DC.CursorPos, outer_window->DC.CursorPos + actual_outer_size); in BeginTableEx() 410 table->HostIndentX = inner_window->DC.Indent.x; in BeginTableEx() 415 temp_data->HostBackupColumnsOffset = outer_window->DC.ColumnsOffset; in BeginTableEx() 416 temp_data->HostBackupPrevLineSize = inner_window->DC.PrevLineSize; in BeginTableEx() 417 temp_data->HostBackupCurrLineSize = inner_window->DC.CurrLineSize; in BeginTableEx() 418 temp_data->HostBackupCursorMaxPos = inner_window->DC.CursorMaxPos; in BeginTableEx() 419 temp_data->HostBackupItemWidth = outer_window->DC.ItemWidth; in BeginTableEx() 420 temp_data->HostBackupItemWidthStackSize = outer_window->DC.ItemWidthStack.Size; in BeginTableEx() 421 inner_window->DC in BeginTableEx() [all...] |
H A D | imgui.cpp | 2271 const ImVec2 pos = window->DC.CursorPos; in CalcListClipping() 2294 float off_y = pos_y - window->DC.CursorPos.y; in SetCursorPosYAndSetupForPrevLine() 2295 window->DC.CursorPos.y = pos_y; in SetCursorPosYAndSetupForPrevLine() 2296 window->DC.CursorMaxPos.y = ImMax(window->DC.CursorMaxPos.y, pos_y); in SetCursorPosYAndSetupForPrevLine() 2297 window->DC.CursorPosPrevLine.y = window->DC.CursorPos.y - line_height; // Setting those fields so that SetScrollHereY() can properly function after the end of our clipper usage. in SetCursorPosYAndSetupForPrevLine() 2298 window->DC.PrevLineSize.y = (line_height - g.Style.ItemSpacing.y); // If we end up needing more accurate data (to e.g. use SameLine) we may as well make the clipper have a fourth step to let user process and display the last item in their list. in SetCursorPosYAndSetupForPrevLine() 2299 if (ImGuiOldColumns* columns = window->DC.CurrentColumns) in SetCursorPosYAndSetupForPrevLine() 2300 columns->LineMinY = window->DC in SetCursorPosYAndSetupForPrevLine() [all...] |
H A D | imgui_widgets.cpp | 166 const ImVec2 text_pos(window->DC.CursorPos.x, window->DC.CursorPos.y + window->DC.CurrLineTextBaseOffset); in TextEx() 167 const float wrap_pos_x = window->DC.TextWrapPos; in TextEx() 244 const float wrap_width = wrap_enabled ? CalcWrapWidthForPos(window->DC.CursorPos, wrap_pos_x) : 0.0f; in TextEx() 330 bool need_backup = (g.CurrentWindow->DC.TextWrapPos < 0.0f); // Keep existing wrap position if one is already set in TextWrappedV() 365 const ImVec2 pos = window->DC.CursorPos; in LabelTextV() 400 ImVec2 pos = window->DC.CursorPos; in BulletTextV() 401 pos.y += window->DC.CurrLineTextBaseOffset; in BulletTextV() 681 ImVec2 pos = window->DC in ButtonEx() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/ |
H A D | Disassembler.h | 72 int LLVMSetDisasmOptions(LLVMDisasmContextRef DC, uint64_t Options); 88 void LLVMDisasmDispose(LLVMDisasmContextRef DC); 92 * the parameter DC. The bytes of the instruction are specified in the 100 size_t LLVMDisasmInstruction(LLVMDisasmContextRef DC, uint8_t *Bytes,
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | dec.c | 33 const int DC = (dc); \ 34 STORE(0, y, DC + (d)); \ 35 STORE(1, y, DC + (c)); \ 36 STORE(2, y, DC - (c)); \ 37 STORE(3, y, DC - (d)); \ 114 const int DC = in[0] + 4; in TransformDC_C() local 118 STORE(i, j, DC); in TransformDC_C() 215 static void DC16_C(uint8_t* dst) { // DC in DC16_C() 216 int DC = 16; in DC16_C() local 219 DC in DC16_C() 225 int DC = 8; DC16NoTop_C() local 234 int DC = 8; DC16NoLeft_C() local [all...] |
H A D | enc.c | 293 int DC = 0; in DCMode() local 296 for (j = 0; j < size; ++j) DC += top[j]; in DCMode() 298 for (j = 0; j < size; ++j) DC += left[j]; in DCMode() 300 DC += DC; in DCMode() 302 DC = (DC + round) >> shift; in DCMode() 304 for (j = 0; j < size; ++j) DC += left[j]; in DCMode() 305 DC += DC; in DCMode() [all...] |
H A D | enc_msa.c | 524 int DC; in DCMode16x16() local 532 DC = HADD_UH_U32(dctemp); in DCMode16x16() 533 DC = (DC + 16) >> 5; in DCMode16x16() 537 DC = HADD_UH_U32(dcleft); in DCMode16x16() 538 DC = (DC + DC + 16) >> 5; in DCMode16x16() 542 DC = HADD_UH_U32(dctop); in DCMode16x16() 543 DC in DCMode16x16() [all...] |
H A D | enc_mips_dsp_r2.c | 485 int DC, DC1; in DCMode16() local 500 "addu %[DC], %[temp0], %[temp2] \n\t" in DCMode16() 501 "move %[DC1], %[DC] \n\t" in DCMode16() 515 "addu %[DC], %[DC], %[DC1] \n\t" in DCMode16() 529 "addu %[DC], %[temp0], %[temp2] \n\t" in DCMode16() 530 "addu %[DC], %[DC], %[DC] \n\t" in DCMode16() 532 "shra_r.w %[DC], in DCMode16() 548 int DC, DC1; DCMode8() local [all...] |
H A D | dec_sse2.c | 1079 static void DC16_SSE2(uint8_t* dst) { // DC in DC16_SSE2() 1091 const int DC = _mm_cvtsi128_si32(sum) + left + 16; in DC16_SSE2() local 1092 Put16_SSE2(DC >> 5, dst); in DC16_SSE2() 1096 static void DC16NoTop_SSE2(uint8_t* dst) { // DC with top samples unavailable in DC16NoTop_SSE2() 1097 int DC = 8; in DC16NoTop_SSE2() local 1100 DC += dst[-1 + j * BPS]; in DC16NoTop_SSE2() 1102 Put16_SSE2(DC >> 4, dst); in DC16NoTop_SSE2() 1105 static void DC16NoLeft_SSE2(uint8_t* dst) { // DC with left samples unavailable in DC16NoLeft_SSE2() 1111 const int DC = _mm_cvtsi128_si32(sum) + 8; in DC16NoLeft_SSE2() local 1112 Put16_SSE2(DC >> in DC16NoLeft_SSE2() 1149 const int DC = _mm_cvtsi128_si32(sum) + left + 8; DC8uv_SSE2() local 1158 const int DC = _mm_cvtsi128_si32(sum) + 4; DC8uvNoLeft_SSE2() local [all...] |
H A D | enc_sse2.c | 481 // helper for chroma-DC predictions 625 const int DC = VP8HorizontalAdd8b(&combined) + 8; in DC8uv_SSE2() local 626 Put8x8uv_SSE2(DC >> 4, dst); in DC8uv_SSE2() 633 const int DC = _mm_cvtsi128_si32(sum) + 4; in DC8uvNoLeft_SSE2() local 634 Put8x8uv_SSE2(DC >> 3, dst); in DC8uvNoLeft_SSE2() 665 const int DC = in DC16_SSE2() local 667 Put16_SSE2(DC >> 5, dst); in DC16_SSE2() 672 const int DC = VP8HorizontalAdd8b(&top_row) + 8; in DC16NoLeft_SSE2() local 673 Put16_SSE2(DC >> 4, dst); in DC16NoLeft_SSE2()
|
/third_party/ffmpeg/libavcodec/x86/ |
H A D | mdct15.asm | 52 addps %2, xm0 ; DC[0].re, DC[0].im, junk... 53 movlhps %2, %2 ; DC[0].re, DC[0].im, DC[0].re, DC[0].im
|
H A D | vp9dsp_init_16bpp.c | 86 init_ipred_func(dc, DC, 4, 16, mmxext); in ff_vp9dsp_init_16bpp_x86() 105 init_8_16_32_ipred_funcs(dc, DC, 16, sse2); in ff_vp9dsp_init_16bpp_x86()
|
H A D | vp8dsp.asm | 885 ; calculate DC 939 ; calculate DC 954 ; add DC 974 ; calculate DC 993 ; add DC
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
H A D | CloneModule.cpp | 25 Comdat *DC = Dst->getParent()->getOrInsertComdat(SC->getName()); in copyComdat() 26 DC->setSelectionKind(SC->getSelectionKind()); in copyComdat() 27 Dst->setComdat(DC); in copyComdat()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | DebugCounter.cpp | 55 static ManagedStatic<DebugCounter> DC; variable 63 DebugCounter &DebugCounter::instance() { return *DC; } in instance()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | moduleWithStatementsOfEveryKind.js | 26 declare class DC { 55 export declare class DC {
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-ot-shape-complex-thai.cc | 45 DC, enumerator 58 return DC; in get_consonant_type() 178 T0, /* DC */ 205 B2, /* DC */
|
/third_party/node/deps/v8/src/codegen/ia32/ |
H A D | sse-instr.h | 27 V(paddusb, 66, 0F, DC) \
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | SIInstrInfo.cpp | 3702 unsigned DC = DppCt->getImm(); 3703 if (DC == DppCtrl::DPP_UNUSED1 || DC == DppCtrl::DPP_UNUSED2 || 3704 DC == DppCtrl::DPP_UNUSED3 || DC > DppCtrl::DPP_LAST || 3705 (DC >= DppCtrl::DPP_UNUSED4_FIRST && DC <= DppCtrl::DPP_UNUSED4_LAST) || 3706 (DC >= DppCtrl::DPP_UNUSED5_FIRST && DC <= DppCtrl::DPP_UNUSED5_LAST) || 3707 (DC > [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/MCTargetDesc/ |
H A D | AArch64InstPrinter.cpp | 827 // DC aliases in printSysAlias() 830 const AArch64DC::DC *DC = AArch64DC::lookupDCByEncoding(Encoding); in printSysAlias() local 831 if (!DC || !DC->haveFeatures(STI.getFeatureBits())) in printSysAlias() 836 Name = std::string(DC->Name); in printSysAlias()
|
/third_party/mbedtls/library/ |
H A D | aes.c | 136 V(2D, 1B, 1B, 36), V(B2, 6E, 6E, DC), V(EE, 5A, 5A, B4), V(FB, A0, A0, 5B), \ 155 V(A0, 60, 60, C0), V(98, 81, 81, 19), V(D1, 4F, 4F, 9E), V(7F, DC, DC, A3), \ 170 V(DD, 4B, 4B, 96), V(DC, BD, BD, 61), V(86, 8B, 8B, 0D), V(85, 8A, 8A, 0F), \ 275 V(4F, C5, C0, 80), V(A2, 20, DC, 61), V(69, 4B, 77, 5A), V(16, 1A, 12, 1C), \ 280 V(76, 29, 43, 8B), V(DC, C6, 23, CB), V(68, FC, ED, B6), V(63, F1, E4, B8), \ 281 V(CA, DC, 31, D7), V(10, 85, 63, 42), V(40, 22, 97, 13), V(20, 11, C6, 84), \ 283 V(4B, 2F, 9E, 1D), V(F3, 30, B2, DC), V(EC, 52, 86, 0D), V(D0, E3, C1, 77), \
|