Home
last modified time | relevance | path

Searched refs:In (Results 1 – 25 of 4179) sorted by relevance

12345678910>>...168

/third_party/skia/third_party/externals/tint/test/shader_io/
Dinterpolate_input_struct.wgsl.expected.spvasm19 OpName %In "In"
20 OpMemberName %In 0 "none"
21 OpMemberName %In 1 "flat"
22 OpMemberName %In 2 "perspective_center"
23 OpMemberName %In 3 "perspective_centroid"
24 OpMemberName %In 4 "perspective_sample"
25 OpMemberName %In 5 "linear_center"
26 OpMemberName %In 6 "linear_centroid"
27 OpMemberName %In 7 "linear_sample"
47 OpMemberDecorate %In 0 Offset 0
[all …]
Dinterpolate_input_struct.wgsl.expected.glsl4 struct In {
25 void tint_symbol_1_inner(In tint_symbol_2) {
29In tint_symbol_5 = In(tint_symbol_3.none, tint_symbol_3.tint_symbol, tint_symbol_3.perspective_cen…
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonGenExtract.cpp80 bool convert(Instruction *In);
96 bool HexagonGenExtract::convert(Instruction *In) { in INITIALIZE_PASS_DEPENDENCY()
101 BasicBlock *BB = In->getParent(); in INITIALIZE_PASS_DEPENDENCY()
107 bool Match = match(In, m_And(m_Shl(m_LShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
114 Match = match(In, m_And(m_Shl(m_AShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
122 Match = match(In, m_And(m_Shl(m_Value(BF), m_ConstantInt(CSL)), in INITIALIZE_PASS_DEPENDENCY()
131 Match = match(In, m_And(m_LShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
138 Match = match(In, m_And(m_AShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
145 Match = match(In, m_Shl(m_LShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
152 Match = match(In, m_Shl(m_AShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
[all …]
DHexagonLoopIdiomRecognition.cpp576 void promoteTo(Instruction *In, IntegerType *DestTy, BasicBlock *LoopB);
580 bool findCycle(Value *Out, Value *In, ValueSeq &Cycle);
977 Instruction *In = dyn_cast<Instruction>(Val); in isPromotableTo() local
978 if (!In) in isPromotableTo()
982 switch (In->getOpcode()) { in isPromotableTo()
993 if (CmpInst *CI = cast<CmpInst>(In)) in isPromotableTo()
997 return In->hasNoSignedWrap() && In->hasNoUnsignedWrap(); in isPromotableTo()
1002 void PolynomialMultiplyRecognize::promoteTo(Instruction *In, in promoteTo() argument
1004 Type *OrigTy = In->getType(); in promoteTo()
1008 if (!In->getType()->isIntegerTy(1)) in promoteTo()
[all …]
DHexagonBlockRanges.cpp161 for (auto &In : B) { in InstrIndexMap() local
162 if (In.isDebugInstr()) in InstrIndexMap()
164 assert(getIndex(&In) == IndexType::None && "Instruction already in map"); in InstrIndexMap()
165 Map.insert(std::make_pair(Idx, &In)); in InstrIndexMap()
315 for (auto &In : B) { in computeInitialLiveRanges() local
316 if (In.isDebugInstr()) in computeInitialLiveRanges()
318 IndexType Index = IndexMap.getIndex(&In); in computeInitialLiveRanges()
320 for (auto &Op : In.operands()) { in computeInitialLiveRanges()
336 for (auto &Op : In.operands()) { in computeInitialLiveRanges()
350 for (auto &Op : In.operands()) { in computeInitialLiveRanges()
[all …]
DRDFGraph.cpp598 bool TargetOperandInfo::isPreserving(const MachineInstr &In, unsigned OpNum) in isPreserving() argument
600 return TII.isPredicated(In); in isPreserving()
604 bool TargetOperandInfo::isClobbering(const MachineInstr &In, unsigned OpNum) in isClobbering() argument
606 const MachineOperand &Op = In.getOperand(OpNum); in isClobbering()
610 if (In.isCall()) in isClobbering()
617 bool TargetOperandInfo::isFixedReg(const MachineInstr &In, unsigned OpNum) in isFixedReg() argument
619 if (In.isCall() || In.isReturn() || In.isInlineAsm()) in isFixedReg()
622 if (In.isBranch()) in isFixedReg()
623 for (const MachineOperand &O : In.operands()) in isFixedReg()
627 const MCInstrDesc &D = In.getDesc(); in isFixedReg()
[all …]
/third_party/skia/third_party/externals/angle2/src/third_party/ceval/
DREADME.md79 printf("In = ");
97 In = 3*7**2
107 In = (3.2+2.8)/2
117 In = _e**_pi>_pi**_e
129 In = 5.4%2
137 In = 5.4//2
145 In = 2*2.0+1.4
155 In = (5/4+3*-5)+(sin(_pi))**2+(cos(_pi))**2
178 In = 3,4,5,6
190 In = tanh(2/3)==(sinh(2/3)/cosh(2/3))
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Option/
DOptTable.cpp197 static bool optionMatches(const OptTable::Info &In, StringRef Option) { in optionMatches() argument
198 if (In.Prefixes) in optionMatches()
199 for (size_t I = 0; In.Prefixes[I]; I++) in optionMatches()
200 if (Option == std::string(In.Prefixes[I]) + In.Name) in optionMatches()
212 const Info &In = OptionInfos[I]; in suggestValueCompletions() local
213 if (!In.Values || !optionMatches(In, Option)) in suggestValueCompletions()
217 StringRef(In.Values).split(Candidates, ",", -1, false); in suggestValueCompletions()
232 const Info &In = OptionInfos[I]; in findByPrefix() local
233 if (!In.Prefixes || (!In.HelpText && !In.GroupID)) in findByPrefix()
235 if (In.Flags & DisableFlags) in findByPrefix()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUISelDAGToDAG.cpp254 bool SelectVOP3Mods_NNaN(SDValue In, SDValue &Src, SDValue &SrcMods) const;
255 bool SelectVOP3Mods_f32(SDValue In, SDValue &Src, SDValue &SrcMods) const;
256 bool SelectVOP3ModsImpl(SDValue In, SDValue &Src, unsigned &SrcMods) const;
257 bool SelectVOP3Mods(SDValue In, SDValue &Src, SDValue &SrcMods) const;
258 bool SelectVOP3NoMods(SDValue In, SDValue &Src) const;
259 bool SelectVOP3Mods0(SDValue In, SDValue &Src, SDValue &SrcMods,
261 bool SelectVOP3NoMods0(SDValue In, SDValue &Src, SDValue &SrcMods,
264 bool SelectVOP3OMods(SDValue In, SDValue &Src,
267 bool SelectVOP3PMods(SDValue In, SDValue &Src, SDValue &SrcMods) const;
268 bool SelectVOP3PMods0(SDValue In, SDValue &Src, SDValue &SrcMods,
[all …]
/third_party/node/deps/npm/node_modules/node-gyp/lib/
DFind-VisualStudio.cs33 void Next([MarshalAs(UnmanagedType.U4), In] int celt, in Next()
37 void Skip([MarshalAs(UnmanagedType.U4), In] int celt); in Skip()
65 ISetupInstance GetInstanceForPath([MarshalAs(UnmanagedType.LPWStr), In] string path); in GetInstanceForPath()
99 string GetDisplayName([MarshalAs(UnmanagedType.U4), In] int lcid); in GetDisplayName()
102 string GetDescription([MarshalAs(UnmanagedType.U4), In] int lcid); in GetDescription()
105 string ResolvePath([MarshalAs(UnmanagedType.LPWStr), In] string pwszRelativePath); in ResolvePath()
171 object GetValue([MarshalAs(UnmanagedType.LPWStr), In] string pwszName); in GetValue()
/third_party/libuv/docs/src/
Dmigration_010_100.rst15 In libuv 0.10 (and previous versions), loops were created with `uv_loop_new`, which
46 Error handling had a major overhaul in libuv 1.0. In general, functions and status parameters
50 In 1.0, functions and status parameters contain the actual error code, which is 0 for success, or
78 In libuv 0.10 Unix used a threadpool which defaulted to 4 threads, while Windows used the
82 In 1.0, we unified both implementations, so Windows now uses the same implementation Unix
90 In libuv 0.10 the callback had to return a filled :c:type:`uv_buf_t` by value:
98 In libuv 1.0 a pointer to a buffer is passed to the callback, which the user
190 In libuv 0.10 (and earlier versions) the `uv_read2_start` function was used to start reading
203 In libuv 1.0, `uv_read2_start` was removed, and the user needs to check if there are pending
238 libuv 0.10. In 1.0, this function got renamed to :c:func:`uv_fs_scandir`, since it's
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
Drenderer_utils.h284 template <typename In>
287 constexpr In restartIndex = gl::GetPrimitiveRestartIndexFromType<In>(); in LineLoopRestartIndexCountHelper()
288 const In *inIndices = reinterpret_cast<const In *>(srcPtr); in LineLoopRestartIndexCountHelper()
295 In vertex = inIndices[curIndex]; in LineLoopRestartIndexCountHelper()
336 template <typename In, typename Out>
339 constexpr In restartIndex = gl::GetPrimitiveRestartIndexFromType<In>(); in CopyLineLoopIndicesWithRestart()
341 const In *inIndices = reinterpret_cast<const In *>(srcPtr); in CopyLineLoopIndicesWithRestart()
346 In vertex = inIndices[curIndex]; in CopyLineLoopIndicesWithRestart()
/third_party/typescript/tests/baselines/reference/
DenumsWithMultipleDeclarations1.errors.txt1 tests/cases/compiler/enumsWithMultipleDeclarations1.ts(6,3): error TS2432: In an enum with multiple…
2 tests/cases/compiler/enumsWithMultipleDeclarations1.ts(10,3): error TS2432: In an enum with multipl…
13 !!! error TS2432: In an enum with multiple declarations, only one declaration can omit an initializ…
19 !!! error TS2432: In an enum with multiple declarations, only one declaration can omit an initializ…
/third_party/gstreamer/gstplugins_bad/gst/siren/
Ddecoder.c99 int In[20]; in Siren7_DecodeFrame() local
111 In[i] = ((short *) DataIn)[i]; in Siren7_DecodeFrame()
113 In[i] = in Siren7_DecodeFrame()
128 set_bitstream (In); in Siren7_DecodeFrame()
188 checksum = In[bits_per_frame - 1] & ((1 << checksum_bits) - 1); in Siren7_DecodeFrame()
189 In[bits_per_frame - 1] &= ~checksum; in Siren7_DecodeFrame()
193 sum ^= (In[idx] & 0xFFFF) << (idx % 15); in Siren7_DecodeFrame()
/third_party/skia/third_party/externals/imgui/backends/vulkan/
Dglsl_shader.frag9 } In;
13 fColor = In.Color * texture(sTexture, In.UV.st);
/third_party/mesa3d/src/vulkan/overlay-layer/
Doverlay.frag9 } In;
13 fColor = In.Color * texture(sTexture, In.UV.st);
/third_party/lz4/examples/
Dstreaming_api_basics.md23 In other words, LZ4 library finds redundancy from a single contiguous memory block.
28 In these figures, the original data is split into 4KiBytes contiguous chunks.
70 - In example (1), there is no dependency.
72 - In example (2), naturally 8KiBytes block has internal dependency.
74 - In example (3), block #2 has dependency to #1,
78 In (2), there's no dependency between chunk B and C, but (3) has dependency between B and C.
/third_party/vk-gl-cts/doc/testspecs/GLES31/
Dfunctional.texture.border_clamp.txt49 In formats.* subgroup, all GLES31 texture formats are tested. Each format is
53 In range_clamp.* subgroup, border color components are set to values that are
57 In sampler.* subgroup, texture border color and wrapping mode are set using
60 In per_axis_wrap_mode.*, texture wrap mode is not same in all S, T, and R
64 In depth_compare_mode.*, depth texture border values are tested with compare
67 In unused_channels.*, border color has non-zero values in components that are
Dfunctional.tessellation_geometry_interaction.txt43 passthrough geometry or tessellation shader does not change the result image. In
45 shader and then with a passthrough geometry shader. In
66 over the viewport. In the geometry_scatter_instances case, each geometry shader
68 emitted by the other instances of the same geometry shader execution. In the
70 far form each other. In geometry_scatter_layers case, each emitted primitive of
85 shader stages. In {vertex, control, evaluation, geometry}_set cases, a constant
86 is assigned to the gl_PointSize in the corresponding shader stage. In {vertex,
87 control, ...}_add cases, gl_PointSize is incremented by a constant. In {eval,
/third_party/ffmpeg/libavfilter/
Dvf_deinterlace_qsv.c251 s->opaque_alloc.In.Surfaces = s->surface_ptrs; in init_out_session()
252 s->opaque_alloc.In.NumSurface = s->nb_surface_ptrs; in init_out_session()
253 s->opaque_alloc.In.Type = hw_frames_hwctx->frame_type; in init_out_session()
255 s->opaque_alloc.Out = s->opaque_alloc.In; in init_out_session()
293 par.vpp.In = hw_frames_hwctx->surfaces[0].Info; in init_out_session()
295 par.vpp.In.CropW = ctx->inputs[0]->w; in init_out_session()
296 par.vpp.In.CropH = ctx->inputs[0]->h; in init_out_session()
299 par.vpp.In.FrameRateExtN = ctx->inputs[0]->frame_rate.num; in init_out_session()
300 par.vpp.In.FrameRateExtD = ctx->inputs[0]->frame_rate.den; in init_out_session()
302 par.vpp.In.FrameRateExtN = ctx->inputs[0]->time_base.num; in init_out_session()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineCasts.cpp861 Value *In = Cmp->getOperand(0); in transformZExtICmp() local
862 Value *Sh = ConstantInt::get(In->getType(), in transformZExtICmp()
863 In->getType()->getScalarSizeInBits() - 1); in transformZExtICmp()
864 In = Builder.CreateLShr(In, Sh, In->getName() + ".lobit"); in transformZExtICmp()
865 if (In->getType() != Zext.getType()) in transformZExtICmp()
866 In = Builder.CreateIntCast(In, Zext.getType(), false /*ZExt*/); in transformZExtICmp()
869 Constant *One = ConstantInt::get(In->getType(), 1); in transformZExtICmp()
870 In = Builder.CreateXor(In, One, In->getName() + ".not"); in transformZExtICmp()
873 return replaceInstUsesWith(Zext, In); in transformZExtICmp()
903 Value *In = Cmp->getOperand(0); in transformZExtICmp() local
[all …]
/third_party/vk-gl-cts/doc/testspecs/GLES3/
Dfunctional.instanced.txt41 In the cases that test draw function, instancing method and instance count, the
44 glVertexAttribDivisor(). In a mixed case different methods are used for
48 In the tests for instanced attribute types, only the vertex attribute divisor
51 attribute is of type vec3. In these cases, draw function and instance count are
54 In all cases, the resulting image is compared against a reference image
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/LineEditor/
DLineEditor.cpp198 LineEditor::LineEditor(StringRef ProgName, StringRef HistoryPath, FILE *In, in LineEditor() argument
211 Data->EL = ::el_init(ProgName.str().c_str(), In, Out, Err); in LineEditor()
282 FILE *In; member
286 LineEditor::LineEditor(StringRef ProgName, StringRef HistoryPath, FILE *In, in LineEditor() argument
289 Data->In = In; in LineEditor()
306 char *Res = ::fgets(Buf, sizeof(Buf), Data->In); in readLine()
/third_party/vk-gl-cts/modules/glshared/
DglsBuiltinPrecisionTests.cpp4484 template <typename In>
4487 return (!isTypeValid<typename In::In0>() ? 0 : in numInputs()
4488 !isTypeValid<typename In::In1>() ? 1 : in numInputs()
4489 !isTypeValid<typename In::In2>() ? 2 : in numInputs()
4490 !isTypeValid<typename In::In3>() ? 3 : in numInputs()
4509 template<typename In>
4512 vector<typename In::In0> in0;
4513 vector<typename In::In1> in1;
4514 vector<typename In::In2> in2;
4515 vector<typename In::In3> in3;
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/APPLE/
DAPPLE_texture_max_level.txt71 In section 3.7.4, insert the following paragraph before the paragraph
74 "In the remainder of section 3.7, denote by level_max the value of the
77 In section 3.7.7 subsection "Mipmapping" modify the second paragraph
83 In section 3.7.7 subsection "Mipmapping" insert the following paragraph
90 In section 3.7.12, modify the last three sentences to read as follows:
94 and the wrap modes for s and t. In the initial state, the value assigned

12345678910>>...168