| /external/libjpeg-turbo/ |
| D | jcmaster.c | 5 * Copyright (C) 1991-1997, Thomas G. Lane. 6 * Modified 2003-2010 by Guido Vollbeding. 7 * libjpeg-turbo Modifications: 14 * and inter-pass control (determining the number of passes and the work 15 * to be done in each pass). 29 huff_opt_pass, /* Huffman code optimization pass */ 30 output_pass /* data output pass */ 36 c_pass_type pass_type; /* the type of the current pass */ 44 * This is here so we can add libjpeg-turbo version/build information to the 47 * object and determine which version of libjpeg-turbo it was built from or [all …]
|
| D | jccoefct.c | 5 * Copyright (C) 1994-1997, Thomas G. Lane. 6 * It was modified by The libjpeg-turbo Project to include only code and 7 * information relevant to libjpeg-turbo. 13 * The coefficient buffer lies between forward-DCT and entropy encoding steps. 21 /* We use a full-image coefficient buffer when doing Huffman optimization, 22 * and also for writing multiple-scan JPEG files. In all cases, the DCT 23 * step is run during the first pass, and subsequent passes need only read 45 /* For single-pass compression, it's sufficient to buffer just one MCU 48 * MCU constructed and sent. In multi-pass modes, this array points to the 53 /* In multi-pass modes, we need a virtual block array for each component. */ [all …]
|
| D | jdmainct.c | 5 * Copyright (C) 1994-1996, Thomas G. Lane. 6 * libjpeg-turbo Modifications: 13 * post-processor; it holds downsampled data in the JPEG colorspace. 15 * Note that this code is bypassed in raw-data mode, since the application 25 * In the current system design, the main buffer need never be a full-image 26 * buffer; any full-height buffers will be found inside the coefficient or 75 * can't be processed until we have another row group for its below-context, 76 * and so we have to save the next-to-last group too for its above-context.) 84 * M+1 M-1 85 * master pointer --> 0 master pointer --> 0 [all …]
|
| D | jddctmgr.c | 5 * Copyright (C) 1994-1996, Thomas G. Lane. 6 * Modified 2002-2010 by Guido Vollbeding. 7 * libjpeg-turbo Modifications: 14 * This file contains the inverse-DCT management logic. 17 * is executed per IDCT step, only during output pass setup. 36 * decode files that reuse Q-table slots.) 37 * When we are ready to make an output pass, the saved Q-table is converted 39 * The multiplier table contents are IDCT-method-dependent. To support 42 * In buffered-image mode, the first output pass may occur before any data 43 * has been seen for some components, and thus before their Q-tables have [all …]
|
| /external/llvm/lib/Transforms/Scalar/ |
| D | LowerGuardIntrinsic.cpp | 1 //===- LowerGuardIntrinsic.cpp - Lower the guard intrinsic ---------------===// 8 //===----------------------------------------------------------------------===// 10 // This pass lowers the llvm.experimental.guard intrinsic to a conditional call 14 //===----------------------------------------------------------------------===// 26 #include "llvm/Pass.h" 32 "guards-predicate-pass-branch-weight", cl::Hidden, cl::init(1 << 20), 48 CallInst *CI) { in MakeGuardControlFlowExplicit() argument 49 OperandBundleDef DeoptOB(*CI->getOperandBundle(LLVMContext::OB_deopt)); in MakeGuardControlFlowExplicit() 50 SmallVector<Value *, 4> Args(std::next(CI->arg_begin()), CI->arg_end()); in MakeGuardControlFlowExplicit() 52 auto *CheckBB = CI->getParent(); in MakeGuardControlFlowExplicit() [all …]
|
| D | LowerExpectIntrinsic.cpp | 1 //===- LowerExpectIntrinsic.cpp - Lower expect intrinsic ------------------===// 8 //===----------------------------------------------------------------------===// 10 // This pass lowers the 'expect' intrinsic to LLVM metadata. 12 //===----------------------------------------------------------------------===// 25 #include "llvm/Pass.h" 32 #define DEBUG_TYPE "lower-expect-intrinsic" 50 "likely-branch-weight", cl::Hidden, cl::init(2000), 53 "unlikely-branch-weight", cl::Hidden, cl::init(1), 57 CallInst *CI = dyn_cast<CallInst>(SI.getCondition()); in handleSwitchExpect() local 58 if (!CI) in handleSwitchExpect() [all …]
|
| /external/llvm/tools/bugpoint-passes/ |
| D | TestPasses.cpp | 1 //===- TestPasses.cpp - "buggy" passes used to test bugpoint --------------===// 8 //===----------------------------------------------------------------------===// 13 //===----------------------------------------------------------------------===// 20 #include "llvm/Pass.h" 25 /// CrashOnCalls - This pass is used to test bugpoint. It intentionally 29 static char ID; // Pass ID, replacement for typeid 48 X("bugpoint-crashcalls", 49 "BugPoint Test Pass - Intentionally crash on CallInsts"); 52 /// DeleteCalls - This pass is used to test bugpoint. It intentionally 56 static char ID; // Pass ID, replacement for typeid [all …]
|
| /external/pdfium/third_party/libopenjpeg/ |
| D | t1.c | 2 * The copyright in this software is being made available under the 2-clauses 7 * Copyright (c) 2002-2014, Universite catholique de Louvain (UCL), Belgium 8 * Copyright (c) 2002-2014, Professor Benoit Macq 9 * Copyright (c) 2001-2003, David Janssens 10 * Copyright (c) 2002-2003, Yannick Verschueren 11 * Copyright (c) 2003-2007, Francois-Olivier Devaux 12 * Copyright (c) 2003-2014, Antonin Descampe 57 /** @defgroup T1 T1 - Implementation of the tier-1 coding */ 60 #define T1_FLAGS(x, y) (t1->flags[x + 1 + ((y / 4) + 1) * (t1->w+2)]) 62 #define opj_t1_setcurctx(curctx, ctxno) curctx = &(mqc)->ctxs[(OPJ_UINT32)(ctxno)] [all …]
|
| /external/llvm/lib/CodeGen/ |
| D | PreISelIntrinsicLowering.cpp | 1 //===-- PreISelIntrinsicLowering.cpp - Pre-ISel intrinsic lowering pass ---===// 8 //===----------------------------------------------------------------------===// 10 // This pass implements IR lowering for the llvm.load.relative intrinsic. 12 //===----------------------------------------------------------------------===// 21 #include "llvm/Pass.h" 33 Type *Int32PtrTy = Int32Ty->getPointerTo(); in lowerLoadRelative() 37 auto CI = dyn_cast<CallInst>(I->getUser()); in lowerLoadRelative() local 39 if (!CI || CI->getCalledValue() != &F) in lowerLoadRelative() 42 IRBuilder<> B(CI); in lowerLoadRelative() 44 B.CreateGEP(Int8Ty, CI->getArgOperand(0), CI->getArgOperand(1)); in lowerLoadRelative() [all …]
|
| D | MachineCopyPropagation.cpp | 1 //===- MachineCopyPropagation.cpp - Machine Copy Propagation Pass ---------===// 8 //===----------------------------------------------------------------------===// 10 // This is an extremely simple MachineInstr-level copy propagation pass. 12 //===----------------------------------------------------------------------===// 22 #include "llvm/Pass.h" 30 #define DEBUG_TYPE "codegen-cp" 45 static char ID; // Pass identification, replacement for typeid 69 /// Def -> available copies map. 71 /// Def -> copies map. 73 /// Src -> Def map [all …]
|
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
| D | InjectTLIMappings.cpp | 1 //===- InjectTLIMAppings.cpp - TLI to VFABI attribute injection ----------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // Populates the VFABI attribute with the scalar-to-vector mappings 12 //===----------------------------------------------------------------------===// 23 #define DEBUG_TYPE "inject-tli-mappings" 34 /// scalar-to-vector mapping. 44 /// <vparams> = "v", as many as are the number of parameters of CI. 45 /// <scalarname> = the name of the scalar function called by CI. 47 static std::string mangleTLIName(StringRef VectorName, const CallInst &CI, in mangleTLIName() argument [all …]
|
| D | LibCallsShrinkWrap.cpp | 1 //===-- LibCallsShrinkWrap.cpp ----------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // This pass shrink-wraps a call to function if the result is not used. 20 // the errno to shrink-wrap the call. Since the chances of hitting the error 26 //===----------------------------------------------------------------------===// 43 #include "llvm/Pass.h" 47 #define DEBUG_TYPE "libcalls-shrinkwrap" 49 STATISTIC(NumWrappedOneCond, "Number of One-Condition Wrappers Inserted"); 50 STATISTIC(NumWrappedTwoCond, "Number of Two-Condition Wrappers Inserted"); [all …]
|
| /external/mesa3d/docs/relnotes/ |
| D | 20.2.0.rst | 1 Mesa 20.2.0 Release Notes / 2020-09-28 20 --------------- 24 63f0359575d558ef98dd78adffc0df4c66b76964ebf603b778b7004964191d30 mesa-20.2.0.tar.xz 28 ------------ 30 - GL_ARB_compute_variable_group_size on Iris. 32 - GL_ARB_gpu_shader5 on llvmpipe 34 - GL_ARB_post_depth_coverage on llvmpipe 36 - GLES 3.2 on llvmpipe 38 - GL_EXT_shader_group_vote on GLES3. 40 - GL_EXT_texture_shadow_lod on llvmpipe [all …]
|
| D | 20.1.0.rst | 1 Mesa 20.1.0 Release Notes / 2020-05-27 21 --------------- 25 2109055d7660514fc4c1bcd861bcba9db00c026119ae222720111732dba27c83 mesa-20.1.0.tar.xz 28 ------------ 30 - GL_ARB_compute_variable_group_size on i965. 31 - GL_EXT_depth_bounds_test on Iris. 32 - GL_EXT_texture_shadow_lod on radeonsi, nvc0. 33 - GL_NV_alpha_to_coverage_dither_control on radeonsi 34 - GL_NV_copy_image on all gallium drivers. 35 - GL_NV_pixel_buffer_object on all gallium drivers, i915, i965, swrast. [all …]
|
| D | 19.3.0.rst | 1 Mesa 19.3.0 Release Notes / 2019-12-12 21 --------------- 25 5fa0e4e9dca79560f6882e362f9db36d81cf96da16cf6a84e0ada7466a99a5d7 mesa-19.3.0.tar.xz 28 ------------ 30 - GL_ARB_gl_spirv on i965, iris. 31 - GL_ARB_spirv_extensions on i965, iris. 32 - GL_EXT_demote_to_helper_invocation on iris, i965. 33 - OpenGL 4.6 on i965, iris. 34 - EGL_EXT_image_flush_external 35 - VK_ANDROID_external_memory_android_hardware_buffer on RADV. [all …]
|
| D | 20.3.0.rst | 1 Mesa 20.3.0 Release Notes / 2020-12-03 20 --------------- 24 2999738e888731531cd62b27519fa37566cc0ea2cd7d4d97f46abaa3e949c630 mesa-20.3.0.tar.xz 28 ------------ 30 - GL 4.5 on llvmpipe 32 - GL_INTEL_blackhole_render on radeonsi 34 - GL_NV_copy_depth_to_color for NIR 36 - GL_NV_half_float 38 - GL_NV_shader_atomic_int64 on radeonsi 40 - EGL_KHR_swap_buffers_with_damage on X11 (DRI3) [all …]
|
| /external/igt-gpu-tools/tests/ |
| D | meta_test.c | 30 * The purpose of this test is to test the CI system that we have 34 * Possible exit-states of igt tests: 35 * 1. pass - subtest: pass-result 36 * 2. fail - subtest: fail-result 37 * 3. dmesg warn - subtest: dmesg-pass 38 * - subtest: dmesg-warn 42 * 4. crash - subtest: user-crash 43 * 5. piglit timeout - subtest: piglit-timeout 44 * 6. incomplete - subtest: generate-panic 47 * NOTE: if the tested CI system have features such as [all …]
|
| /external/clang/lib/CodeGen/ |
| D | CodeGenAction.cpp | 1 //===--- CodeGenAction.cpp - LLVM Code Generation Frontend Action ---------===// 8 //===----------------------------------------------------------------------===// 33 #include "llvm/Pass.h" 80 this->LinkModules.push_back( in BackendConsumer() 83 llvm::Module *getModule() const { return Gen->GetModule(); } in getModule() 85 return std::unique_ptr<llvm::Module>(Gen->ReleaseModule()); in takeModule() 93 Gen->HandleCXXStaticMemberVarInstantiation(VD); in HandleCXXStaticMemberVarInstantiation() 104 Gen->Initialize(Ctx); in Initialize() 112 Context->getSourceManager(), in HandleTopLevelDecl() 118 Gen->HandleTopLevelDecl(D); in HandleTopLevelDecl() [all …]
|
| /external/cronet/testing/unexpected_passes_common/ |
| D | queries_unittest.py | 3 # Use of this source code is governed by a BSD-style license that can be 27 def testStripPrefixFromBuildIdValidId(self) -> None: 28 self.assertEqual(queries._StripPrefixFromBuildId('build-1'), '1') 30 def testStripPrefixFromBuildIdInvalidId(self) -> None: 34 queries._StripPrefixFromBuildId('build-1-2') 36 def testConvertActualResultToExpectationFileFormatAbort(self) -> None: 43 self._builder = data_types.BuilderEntry('ci', constants.BuilderTypes.CI, 46 def testSplitQueryGeneratorInitialSplit(self) -> None: 55 def testSplitQueryGeneratorSplitQuery(self) -> None: 62 def testSplitQueryGeneratorSplitQueryCannotSplitFurther(self) -> None: [all …]
|
| /external/python/cpython2/Lib/idlelib/idle_test/ |
| D | test_calltips.py | 28 def __call__(self, ci): 'doc' argument 29 __call__.tip = "(self, ci)" 61 'T.__new__(S, ...) -> a new object with type S, a subtype of T') 64 append_doc = "L.append(object) -- append object to end" 73 # This is also a test of an old-style class 81 def f(): pass 83 self.assertEqual(signature(f), '()\n' + 'a' * (ct._MAX_COLS-3) + '...') 88 "()\nlist() -> new empty list\n" 89 "list(iterable) -> new list initialized from iterable's items") 93 pass [all …]
|
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
| D | PreISelIntrinsicLowering.cpp | 1 //===- PreISelIntrinsicLowering.cpp - Pre-ISel intrinsic lowering pass ----===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // This pass implements IR lowering for the llvm.load.relative and llvm.objc.* 12 //===----------------------------------------------------------------------===// 25 #include "llvm/Pass.h" 36 Type *Int32PtrTy = Int32Ty->getPointerTo(); in lowerLoadRelative() 40 auto CI = dyn_cast<CallInst>(I->getUser()); in lowerLoadRelative() local 42 if (!CI || CI->getCalledValue() != &F) in lowerLoadRelative() 45 IRBuilder<> B(CI); in lowerLoadRelative() [all …]
|
| /external/mesa3d/.gitlab-ci/piglit/ |
| D | run_cl.sh | 3 set -e 4 set -o xtrace 8 rm -rf results 13 PIGLIT_OPTIONS=$(echo $PIGLIT_OPTIONS | head -n 1) 18 ./piglit run -c -j${FDO_CI_CONCURRENT:-4} $PIGLIT_OPTIONS $PIGLIT_PROFILES $OLDPWD/results 20 if [ $retVal -ne 0 ]; then 23 set -e 25 PIGLIT_RESULTS=${PIGLIT_RESULTS:-$PIGLIT_PROFILES} 26 mkdir -p .gitlab-ci/piglit 27 cp $OLDPWD/install/piglit/$PIGLIT_RESULTS.txt .gitlab-ci/piglit/$PIGLIT_RESULTS.txt.baseline [all …]
|
| D | run.sh | 3 set -e 4 set -o xtrace 8 rm -rf results 11 PIGLIT_OPTIONS=$(echo $PIGLIT_OPTIONS | head -n 1) 13 xvfb-run --server-args="-noreset" sh -c \ 15 …wflinfo --platform glx --api gl --profile core | tee /tmp/version.txt | grep \"Mesa $VERSION\\\$\"… 16 ./piglit run -j${FDO_CI_CONCURRENT:-4} $PIGLIT_OPTIONS $PIGLIT_PROFILES $OLDPWD/results" 18 if [ $retVal -ne 0 ]; then 21 set -e 23 PIGLIT_RESULTS=${PIGLIT_RESULTS:-$PIGLIT_PROFILES} [all …]
|
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
| D | LowerExpectIntrinsic.cpp | 1 //===- LowerExpectIntrinsic.cpp - Lower expect intrinsic ------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // This pass lowers the 'expect' intrinsic to LLVM metadata. 11 //===----------------------------------------------------------------------===// 26 #include "llvm/Pass.h" 34 #define DEBUG_TYPE "lower-expect-intrinsic" 52 "likely-branch-weight", cl::Hidden, cl::init(2000), 55 "unlikely-branch-weight", cl::Hidden, cl::init(1), 59 CallInst *CI = dyn_cast<CallInst>(SI.getCondition()); in handleSwitchExpect() local [all …]
|
| /external/mesa3d/docs/ci/ |
| D | docker.rst | 1 Docker CI 4 For llvmpipe and swrast CI, we run tests in a container containing 5 VK-GL-CTS, on the shared GitLab runners provided by `freedesktop 9 --------------------- 11 The Docker containers are rebuilt from the debian-install.sh script 12 when DEBIAN\_TAG is changed in .gitlab-ci.yml, and 13 debian-test-install.sh when DEBIAN\_ARM64\_TAG is changed in 14 .gitlab-ci.yml. The resulting images are around 500MB, and are 19 gitlab-runner is a client that polls gitlab.freedesktop.org for 21 have tags, so we can have DUT-specific jobs that only run on runners [all …]
|