Home
last modified time | relevance | path

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

12345678910>>...24

/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/mesa3d/src/mesa/main/
Drastpos.c410 GLfloat *objnorm = ctx->Current.Attrib[VERT_ATTRIB_NORMAL]; in _mesa_RasterPos()
421 ctx->Current.RasterPosValid = GL_FALSE; in _mesa_RasterPos()
427 ctx->Current.RasterPosValid = GL_FALSE; in _mesa_RasterPos()
433 ctx->Current.RasterPosValid = GL_FALSE; in _mesa_RasterPos()
440 ctx->Current.RasterPosValid = GL_FALSE; in _mesa_RasterPos()
451 ctx->Current.RasterPos[0] = ndc[0] * scale[0] + translate[0]; in _mesa_RasterPos()
452 ctx->Current.RasterPos[1] = ndc[1] * scale[1] + translate[1]; in _mesa_RasterPos()
453 ctx->Current.RasterPos[2] = ndc[2] * scale[2] + translate[2]; in _mesa_RasterPos()
454 ctx->Current.RasterPos[3] = clip[3]; in _mesa_RasterPos()
458 ctx->Current.RasterPos[3] = CLAMP(ctx->Current.RasterPos[3], in _mesa_RasterPos()
[all …]
Ddrawpix.c64 lroundf(ctx->Current.RasterPos[0]), in _mesa_DrawPixels()
65 lroundf(ctx->Current.RasterPos[1])); in _mesa_DrawPixels()
145 if (!ctx->Current.RasterPosValid) { in _mesa_DrawPixels()
152 GLint x = lroundf(ctx->Current.RasterPos[0]); in _mesa_DrawPixels()
153 GLint y = lroundf(ctx->Current.RasterPos[1]); in _mesa_DrawPixels()
180 ctx->Current.RasterPos, in _mesa_DrawPixels()
181 ctx->Current.RasterColor, in _mesa_DrawPixels()
182 ctx->Current.RasterTexCoords[0] ); in _mesa_DrawPixels()
213 lroundf(ctx->Current.RasterPos[0]), in _mesa_CopyPixels()
214 lroundf(ctx->Current.RasterPos[1])); in _mesa_CopyPixels()
[all …]
Datifragshader.c235 struct ati_fragment_shader *curProg = ctx->ATIFragmentShader.Current; in _mesa_BindFragmentShaderATI()
279 ctx->ATIFragmentShader.Current = newProg; in _mesa_BindFragmentShaderATI()
281 assert(ctx->ATIFragmentShader.Current); in _mesa_BindFragmentShaderATI()
303 if (ctx->ATIFragmentShader.Current && in _mesa_DeleteFragmentShaderATI()
304 ctx->ATIFragmentShader.Current->Id == id) { in _mesa_DeleteFragmentShaderATI()
339 free(ctx->ATIFragmentShader.Current->Instructions[i]); in _mesa_BeginFragmentShaderATI()
340 free(ctx->ATIFragmentShader.Current->SetupInst[i]); in _mesa_BeginFragmentShaderATI()
343 _mesa_reference_program(ctx, &ctx->ATIFragmentShader.Current->Program, NULL); in _mesa_BeginFragmentShaderATI()
348 ctx->ATIFragmentShader.Current->Instructions[i] = in _mesa_BeginFragmentShaderATI()
351 ctx->ATIFragmentShader.Current->SetupInst[i] = in _mesa_BeginFragmentShaderATI()
[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/mesa3d/src/mesa/program/
Dprogram.c96 _mesa_reference_program(ctx, &ctx->VertexProgram.Current, in _mesa_init_program()
98 assert(ctx->VertexProgram.Current); in _mesa_init_program()
102 _mesa_reference_program(ctx, &ctx->FragmentProgram.Current, in _mesa_init_program()
104 assert(ctx->FragmentProgram.Current); in _mesa_init_program()
110 ctx->ATIFragmentShader.Current = ctx->Shared->DefaultFragmentShader; in _mesa_init_program()
111 assert(ctx->ATIFragmentShader.Current); in _mesa_init_program()
112 ctx->ATIFragmentShader.Current->RefCount++; in _mesa_init_program()
122 _mesa_reference_program(ctx, &ctx->VertexProgram.Current, NULL); in _mesa_free_program_data()
124 _mesa_reference_program(ctx, &ctx->FragmentProgram.Current, NULL); in _mesa_free_program_data()
128 if (ctx->ATIFragmentShader.Current) { in _mesa_free_program_data()
[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/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/mesa/state_tracker/
Dst_cb_rasterpos.c130 src = ctx->Current.Attrib[defaultAttrib]; in update_attrib()
153 ctx->Current.RasterPosValid = GL_TRUE; in rastpos_point()
157 ctx->Current.RasterPos[0] = pos[0]; in rastpos_point()
159 ctx->Current.RasterPos[1] = height - pos[1]; /* invert Y */ in rastpos_point()
161 ctx->Current.RasterPos[1] = pos[1]; in rastpos_point()
162 ctx->Current.RasterPos[2] = pos[2]; in rastpos_point()
163 ctx->Current.RasterPos[3] = pos[3]; in rastpos_point()
167 ctx->Current.RasterColor, in rastpos_point()
171 ctx->Current.RasterSecondaryColor, in rastpos_point()
176 ctx->Current.RasterTexCoords[i], in rastpos_point()
[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/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/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/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/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/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/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
/third_party/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_pair_schedule.c134 struct schedule_instruction * Current; member
1151 if (*v && (*v)->Writer == s->Current) { in scan_read()
1168 add_tex_reader(s, s->PrevWriter[chan], s->Current); in scan_read()
1173 DBG("%i: read %i[%i] chan %i\n", s->Current->Instruction->IP, file, index, chan); in scan_read()
1176 reader->Reader = s->Current; in scan_read()
1190 add_tex_reader(s, (*v)->Writer, s->Current); in scan_read()
1191 s->Current->NumDependencies++; in scan_read()
1196 if (s->Current->NumReadValues >= 12) { in scan_read()
1199 s->Current->ReadValues[s->Current->NumReadValues++] = *v; in scan_read()
1213 DBG("%i: write %i[%i] chan %i\n", s->Current->Instruction->IP, file, index, chan); in scan_write()
[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/mesa3d/src/compiler/glsl/
Dglsl_parser_extras.h990 # define YYLLOC_DEFAULT(Current, Rhs, N) \ argument
994 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
995 (Current).first_column = YYRHSLOC(Rhs, 1).first_column; \
996 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
997 (Current).last_column = YYRHSLOC(Rhs, N).last_column; \
998 (Current).path = YYRHSLOC(Rhs, N).path; \
1002 (Current).first_line = (Current).last_line = \
1004 (Current).first_column = (Current).last_column = \
1006 (Current).path = YYRHSLOC(Rhs, 0).path; \
1008 (Current).source = 0; \
/third_party/node/deps/v8/include/cppgc/
Dcross-thread-persistent.h106 const SourceLocation& loc = SourceLocation::Current())
110 std::nullptr_t, const SourceLocation& loc = SourceLocation::Current())
114 SentinelPointer s, const SourceLocation& loc = SourceLocation::Current())
118 T* raw, const SourceLocation& loc = SourceLocation::Current())
137 const SourceLocation& loc = SourceLocation::Current())
146 T& raw, const SourceLocation& loc = SourceLocation::Current())
156 const SourceLocation& loc = SourceLocation::Current())
161 const SourceLocation& loc = SourceLocation::Current())
175 const SourceLocation& loc = SourceLocation::Current())
182 const SourceLocation& loc = SourceLocation::Current()) noexcept {
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libEGL/
Dmain.cpp48 Current *current = (Current*)storage; in releaseCurrent()
71 Current *attachThread() in attachThread()
80 Current *current = (Current*)sw::Thread::allocateLocalStorage(currentTLS, sizeof(Current)); in attachThread()
204 static Current *getCurrent(void) in getCurrent()
206 Current *current = (Current*)sw::Thread::getLocalStorage(currentTLS); in getCurrent()
218 Current *current = getCurrent(); in setCurrentError()
225 Current *current = getCurrent(); in getCurrentError()
232 Current *current = getCurrent(); in setCurrentAPI()
239 Current *current = getCurrent(); in getCurrentAPI()
246 Current *current = getCurrent(); in setCurrentContext()
[all …]

12345678910>>...24