Home
last modified time | relevance | path

Searched refs:Current (Results 1 – 25 of 638) sorted by relevance

12345678910>>...26

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DYAMLParser.cpp271 if (Current >= End) in setError()
272 Current = End - 1; in setError()
281 printError(SMLoc::getFromPointer(Current), SourceMgr::DK_Error, Message); in setError()
286 setError(Message, Current); in setError()
298 return StringRef(Current, End - Current); in currentInput()
518 StringRef::iterator Current; member in llvm::yaml::Scanner
770 Current = InputBuffer.getBufferStart(); in init()
900 auto Final = skip_while(Func, Current); in advanceWhile()
901 Column += Final - Current; in advanceWhile()
902 Current = Final; in advanceWhile()
[all …]
/third_party/boost/boost/spirit/home/karma/directive/
Dstrict_relaxed.hpp43 template <typename Current>
44 struct compound_modifier<Current, tag::strict
45 , typename enable_if<has_modifier<Current, tag::relaxed> >::type>
46 : Current
49 : Current() {} in compound_modifier()
51 compound_modifier(Current const& current, tag::strict const&) in compound_modifier()
52 : Current(current) {} in compound_modifier()
55 template <typename Current>
56 struct compound_modifier<Current, tag::relaxed
57 , typename enable_if<has_modifier<Current, tag::strict> >::type>
[all …]
Dupper_lower_case.hpp48 template <typename Current, typename CharEncoding>
50 Current
53 has_modifier<Current, tag::char_code<tag::lower, CharEncoding> >
56 : Current
59 : Current() {} in compound_modifier()
61 compound_modifier(Current const& current, in compound_modifier()
63 : Current(current) {} in compound_modifier()
66 template <typename Current, typename CharEncoding>
68 Current
71 has_modifier<Current, tag::char_code<tag::upper, CharEncoding> >
[all …]
/third_party/mesa3d/src/mesa/main/
Drastpos.c408 GLfloat *objnorm = ctx->Current.Attrib[VERT_ATTRIB_NORMAL]; in _mesa_RasterPos()
419 ctx->Current.RasterPosValid = GL_FALSE; in _mesa_RasterPos()
425 ctx->Current.RasterPosValid = GL_FALSE; in _mesa_RasterPos()
431 ctx->Current.RasterPosValid = GL_FALSE; in _mesa_RasterPos()
438 ctx->Current.RasterPosValid = GL_FALSE; in _mesa_RasterPos()
449 ctx->Current.RasterPos[0] = ndc[0] * scale[0] + translate[0]; in _mesa_RasterPos()
450 ctx->Current.RasterPos[1] = ndc[1] * scale[1] + translate[1]; in _mesa_RasterPos()
451 ctx->Current.RasterPos[2] = ndc[2] * scale[2] + translate[2]; in _mesa_RasterPos()
452 ctx->Current.RasterPos[3] = clip[3]; in _mesa_RasterPos()
456 ctx->Current.RasterPos[3] = CLAMP(ctx->Current.RasterPos[3], in _mesa_RasterPos()
[all …]
Ddrawpix.c62 lroundf(ctx->Current.RasterPos[0]), in _mesa_DrawPixels()
63 lroundf(ctx->Current.RasterPos[1])); in _mesa_DrawPixels()
143 if (!ctx->Current.RasterPosValid) { in _mesa_DrawPixels()
150 GLint x = lroundf(ctx->Current.RasterPos[0]); in _mesa_DrawPixels()
151 GLint y = lroundf(ctx->Current.RasterPos[1]); in _mesa_DrawPixels()
178 ctx->Current.RasterPos, in _mesa_DrawPixels()
179 ctx->Current.RasterColor, in _mesa_DrawPixels()
180 ctx->Current.RasterTexCoords[0] ); in _mesa_DrawPixels()
211 lroundf(ctx->Current.RasterPos[0]), in _mesa_CopyPixels()
212 lroundf(ctx->Current.RasterPos[1])); in _mesa_CopyPixels()
[all …]
Datifragshader.c221 struct ati_fragment_shader *curProg = ctx->ATIFragmentShader.Current; in _mesa_BindFragmentShaderATI()
265 ctx->ATIFragmentShader.Current = newProg; in _mesa_BindFragmentShaderATI()
267 assert(ctx->ATIFragmentShader.Current); in _mesa_BindFragmentShaderATI()
289 if (ctx->ATIFragmentShader.Current && in _mesa_DeleteFragmentShaderATI()
290 ctx->ATIFragmentShader.Current->Id == id) { in _mesa_DeleteFragmentShaderATI()
325 free(ctx->ATIFragmentShader.Current->Instructions[i]); in _mesa_BeginFragmentShaderATI()
326 free(ctx->ATIFragmentShader.Current->SetupInst[i]); in _mesa_BeginFragmentShaderATI()
329 _mesa_reference_program(ctx, &ctx->ATIFragmentShader.Current->Program, NULL); in _mesa_BeginFragmentShaderATI()
334 ctx->ATIFragmentShader.Current->Instructions[i] = in _mesa_BeginFragmentShaderATI()
337 ctx->ATIFragmentShader.Current->SetupInst[i] = in _mesa_BeginFragmentShaderATI()
[all …]
/third_party/boost/boost/spirit/home/support/
Dmodify.hpp30 template <typename Current, typename New, typename Enable = void>
31 struct compound_modifier : Current, New
34 : Current(), New() {} in compound_modifier()
36 compound_modifier(Current const& current, New const& new_) in compound_modifier()
37 : Current(current), New(new_) {} in compound_modifier()
41 template <typename Current, typename New>
43 Current, New, typename enable_if<has_modifier<Current, New> >::type>
44 : Current
47 : Current() {} in compound_modifier()
49 compound_modifier(Current const& current, New const&) in compound_modifier()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/BinaryFormat/
DMsgPackReader.cpp23 : InputBuffer(InputBuffer), Current(InputBuffer.getBufferStart()), in Reader()
29 if (Current == End) in read()
32 uint8_t FB = static_cast<uint8_t>(*Current++); in read()
76 Obj.Float = BitsToFloat(endian::read<uint32_t, Endianness>(Current)); in read()
77 Current += sizeof(float); in read()
85 Obj.Float = BitsToDouble(endian::read<uint64_t, Endianness>(Current)); in read()
86 Current += sizeof(double); in read()
186 T Size = endian::read<T, Endianness>(Current); in readRaw()
187 Current += sizeof(T); in readRaw()
196 Obj.Int = static_cast<int64_t>(endian::read<T, Endianness>(Current)); in readInt()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/HardwareUnits/
DRetireControlUnit.cpp56 const RetireControlUnit::RUToken &Current = Queue[CurrentInstructionSlotIdx]; in getCurrentToken() local
58 const Instruction *Inst = Current.IR.getInstruction(); in getCurrentToken()
61 return Current; in getCurrentToken()
65 const RetireControlUnit::RUToken &Current = getCurrentToken(); in computeNextSlotIdx() local
66 unsigned NextSlotIdx = CurrentInstructionSlotIdx + std::max(1U, Current.NumSlots); in computeNextSlotIdx()
75 RetireControlUnit::RUToken &Current = Queue[CurrentInstructionSlotIdx]; in consumeCurrentToken() local
76 Current.IR.getInstruction()->retire(); in consumeCurrentToken()
79 CurrentInstructionSlotIdx += std::max(1U, Current.NumSlots); in consumeCurrentToken()
81 AvailableEntries += Current.NumSlots; in consumeCurrentToken()
82 Current = { InstRef(), 0U, false }; in consumeCurrentToken()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
Dcord_rep_btree_navigator_test.cc105 EXPECT_DEATH(nav.Current(), ".*"); in TEST()
114 EXPECT_THAT(nav.Current(), Eq(flats().front())); in TEST_P()
123 EXPECT_THAT(nav.Current(), Eq(flats().back())); in TEST_P()
133 EXPECT_THAT(nav.Current(), Eq(flats.front())); in TEST_P()
136 EXPECT_THAT(nav.Current(), Eq(flats[i])); in TEST_P()
139 EXPECT_THAT(nav.Current(), Eq(flats.back())); in TEST_P()
142 EXPECT_THAT(nav.Current(), Eq(flats[i])); in TEST_P()
145 EXPECT_THAT(nav.Current(), Eq(flats.front())); in TEST_P()
154 EXPECT_THAT(nav.Current(), Eq(flats.back())); in TEST_P()
157 EXPECT_THAT(nav.Current(), Eq(flats[i])); in TEST_P()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86InsertPrefetch.cpp192 auto Current = MI; in runOnMachineFunction() local
195 int Offset = X86II::getMemoryOperandNo(Current->getDesc().TSFlags); in runOnMachineFunction()
198 unsigned Bias = X86II::getOperandBias(Current->getDesc()); in runOnMachineFunction()
201 if (!IsMemOpCompatibleWithPrefetch(*Current, MemOpOffset)) in runOnMachineFunction()
204 if (!findPrefetchInfo(Samples, *Current, Prefetches)) in runOnMachineFunction()
214 MF.CreateMachineInstr(Desc, Current->getDebugLoc(), true); in runOnMachineFunction()
225 MIB.addReg(Current->getOperand(MemOpOffset + X86::AddrBaseReg).getReg()) in runOnMachineFunction()
227 Current->getOperand(MemOpOffset + X86::AddrScaleAmt).getImm()) in runOnMachineFunction()
229 Current->getOperand(MemOpOffset + X86::AddrIndexReg).getReg()) in runOnMachineFunction()
230 .addImm(Current->getOperand(MemOpOffset + X86::AddrDisp).getImm() + in runOnMachineFunction()
[all …]
/third_party/boost/boost/units/detail/
Dheterogeneous_conversion.hpp197 template<class Begin, class Current, class Units, class Dimensions, int N>
201 list<T, Current>,
210 template<class Begin, class Current, class Units, class Dimensions, int N>
218 template<class Begin, class Current, class Units, class Dimensions, int N>
222 Current,
231 template<class Begin, class Current, class Units, class Dimensions, int N>
235 Current,
244 template<class Begin, class Current, class Units, class Dimensions>
250 …typedef typename try_add_unit_impl<Current::size::value>::template apply<Current, dimensions>::typ…
254 ((Current::size::value)+1) == (Dimensions::size::value)
[all …]
/third_party/mesa3d/src/mesa/program/
Dprogram.c94 _mesa_reference_program(ctx, &ctx->VertexProgram.Current, in _mesa_init_program()
96 assert(ctx->VertexProgram.Current); in _mesa_init_program()
100 _mesa_reference_program(ctx, &ctx->FragmentProgram.Current, in _mesa_init_program()
102 assert(ctx->FragmentProgram.Current); in _mesa_init_program()
108 ctx->ATIFragmentShader.Current = ctx->Shared->DefaultFragmentShader; in _mesa_init_program()
109 assert(ctx->ATIFragmentShader.Current); in _mesa_init_program()
110 ctx->ATIFragmentShader.Current->RefCount++; in _mesa_init_program()
120 _mesa_reference_program(ctx, &ctx->VertexProgram.Current, NULL); in _mesa_free_program_data()
122 _mesa_reference_program(ctx, &ctx->FragmentProgram.Current, NULL); in _mesa_free_program_data()
126 if (ctx->ATIFragmentShader.Current) { in _mesa_free_program_data()
[all …]
/third_party/mesa3d/src/mesa/state_tracker/
Dst_cb_rasterpos.c128 src = ctx->Current.Attrib[defaultAttrib]; in update_attrib()
151 ctx->Current.RasterPosValid = GL_TRUE; in rastpos_point()
155 ctx->Current.RasterPos[0] = pos[0]; in rastpos_point()
157 ctx->Current.RasterPos[1] = height - pos[1]; /* invert Y */ in rastpos_point()
159 ctx->Current.RasterPos[1] = pos[1]; in rastpos_point()
160 ctx->Current.RasterPos[2] = pos[2]; in rastpos_point()
161 ctx->Current.RasterPos[3] = pos[3]; in rastpos_point()
165 ctx->Current.RasterColor, in rastpos_point()
169 ctx->Current.RasterSecondaryColor, in rastpos_point()
174 ctx->Current.RasterTexCoords[i], in rastpos_point()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/
DSourceMgr.h31 unsigned Current; variable
37 : Sequence(S), Current(0), Iterations(Iter ? Iter : DefaultIterations) {} in SourceMgr()
41 bool hasNext() const { return Current < (Iterations * Sequence.size()); } in hasNext()
42 void updateNext() { ++Current; } in updateNext()
46 return SourceRef(Current, *Sequence[Current % Sequence.size()]); in peekNext()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DStratifiedSets.h421 auto *Current = Start; in linksAt() local
422 while (Current->isRemapped()) in linksAt()
423 Current = &Links[Current->getRemapIndex()]; in linksAt()
425 auto NewRemap = Current->Number; in linksAt()
429 Current = Start; in linksAt()
430 while (Current->isRemapped()) { in linksAt()
431 auto *Next = &Links[Current->getRemapIndex()]; in linksAt()
432 Current->updateRemap(NewRemap); in linksAt()
433 Current = Next; in linksAt()
436 return *Current; in linksAt()
[all …]
/third_party/mesa3d/src/compiler/glsl/glcpp/
Dglcpp.h86 # define YYLLOC_DEFAULT(Current, Rhs, N) \ argument
90 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
91 (Current).first_column = YYRHSLOC(Rhs, 1).first_column; \
92 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
93 (Current).last_column = YYRHSLOC(Rhs, N).last_column; \
97 (Current).first_line = (Current).last_line = \
99 (Current).first_column = (Current).last_column = \
102 (Current).source = 0; \
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DUse.cpp94 const Use *Current = this; in getImpliedUser() local
97 unsigned Tag = (Current++)->Prev.getInt(); in getImpliedUser()
104 ++Current; in getImpliedUser()
107 unsigned Tag = Current->Prev.getInt(); in getImpliedUser()
111 ++Current; in getImpliedUser()
115 return Current + Offset; in getImpliedUser()
121 return Current; in getImpliedUser()
/third_party/icu/docs/userguide/datetime/timezone/
Dexamples.md39 u_printf("%s\n","Current Time Zone Name in English:");
43 u_printf("%s\n","Current Time Zone Name in French:");
52 // Print out the Current Date/Time in the given time zone
55 u_printf("%s\n", "Current Time:");
61 u_printf("%s\n%d\n","Current Time Zone STD offset:",stdOffset/(1000*60*60));
62 u_printf("%s\n%d\n","Current Time Zone DST offset:",dstOffset/(1000*60*60));
63 u_printf("%s\n", "Current date/time is in daylight savings time?");
83 u_printf("%s\n%d\n","Current hour of the day in North American West: ", hour1);
84 u_printf("%s\n%d\n","Current hour of the day in North American East: ", hour2);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
DManagedStringPool.h32 SmallVectorImpl<std::string *>::iterator Current = Pool.begin(); in ~ManagedStringPool() local
33 while (Current != Pool.end()) { in ~ManagedStringPool()
34 delete *Current; in ~ManagedStringPool() local
35 ++Current; in ~ManagedStringPool()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DSymbolicFile.h71 content_type Current; variable
74 content_iterator(content_type symb) : Current(std::move(symb)) {} in content_iterator()
76 const content_type *operator->() const { return &Current; }
78 const content_type &operator*() const { return Current; }
81 return Current == other.Current;
89 Current.moveNext();
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Option/
DArgList.h42 BaseIter Current, End; variable
49 for (; Current != End; ++Current) { in SkipToNextArg()
51 if (!*Current) in SkipToNextArg()
59 const Option &O = (*Current)->getOption(); in SkipToNextArg()
79 BaseIter Current, BaseIter End,
81 : Current(Current), End(End) { in Current() argument
87 reference operator*() const { return *Current; }
88 pointer operator->() const { return Current; }
91 ++Current;
103 return LHS.Current == RHS.Current;
/third_party/gn/src/gn/
Dloader_unittest.cc204 MsgLoop::Current()->RunUntilIdleForTesting(); in TEST_F()
209 MsgLoop::Current()->RunUntilIdleForTesting(); in TEST_F()
220 MsgLoop::Current()->RunUntilIdleForTesting(); in TEST_F()
237 MsgLoop::Current()->RunUntilIdleForTesting(); in TEST_F()
271 MsgLoop::Current()->RunUntilIdleForTesting(); in TEST_F()
277 MsgLoop::Current()->RunUntilIdleForTesting(); in TEST_F()
322 MsgLoop::Current()->RunUntilIdleForTesting(); in TEST_F()
328 MsgLoop::Current()->RunUntilIdleForTesting(); in TEST_F()
362 MsgLoop::Current()->RunUntilIdleForTesting(); in TEST_F()
367 MsgLoop::Current()->RunUntilIdleForTesting(); in TEST_F()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DInterferenceCache.h182 const BlockInterference *Current = nullptr; variable
186 Current = nullptr; in setEntry()
222 Current = CacheEntry ? CacheEntry->get(MBBNum) : &NoInterference; in moveToBlock()
227 return Current->First.isValid(); in hasInterference()
233 return Current->First; in first()
239 return Current->Last; in last()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceMemory.h65 sz_allocator() : Current() {} in sz_allocator()
67 sz_allocator(const sz_allocator<U, Traits> &) : Current() {} in sz_allocator()
99 if (Current == nullptr) { in current()
100 Current = Traits::current(); in current()
102 assert(Current == Traits::current()); in current()
103 return Current; in current()
107 typename Traits::allocator_type Current; member

12345678910>>...26