HomeSort by relevance Sort by last modified time
    Searched refs:Index (Results 726 - 750 of 1147) sorted by null

<<21222324252627282930>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mmstream.idl 101 [in] long Index,
adojet.h 295 virtual HRESULT WINAPI get_Item(VARIANT Index,Filter **ppvObject) = 0;
297 virtual HRESULT WINAPI Delete(VARIANT Index) = 0;
312 HRESULT (WINAPI *get_Item)(Filters *This,VARIANT Index,Filter **ppvObject);
314 HRESULT (WINAPI *Delete)(Filters *This,VARIANT Index);
331 #define Filters_get_Item(This,Index,ppvObject) (This)->lpVtbl->get_Item(This,Index,ppvObject)
333 #define Filters_Delete(This,Index) (This)->lpVtbl->Delete(This,Index)
342 HRESULT WINAPI Filters_get_Item_Proxy(Filters *This,VARIANT Index,Filter **ppvObject);
346 HRESULT WINAPI Filters_Delete_Proxy(Filters *This,VARIANT Index);
    [all...]
mmstream.h 126 LONG Index,
180 LONG Index,
222 #define IMultiMediaStream_EnumMediaStreams(This,Index,ppMediaStream) (This)->lpVtbl->EnumMediaStreams(This,Index,ppMediaStream)
247 static FORCEINLINE HRESULT IMultiMediaStream_EnumMediaStreams(IMultiMediaStream* This,LONG Index,IMediaStream **ppMediaStream) {
248 return This->lpVtbl->EnumMediaStreams(This,Index,ppMediaStream);
293 LONG Index,
  /external/llvm/lib/Analysis/
LoopAccessAnalysis.cpp 204 bool RuntimePointerChecking::CheckingPtrGroup::addPointer(unsigned Index) {
205 const SCEV *Start = RtCheck.Pointers[Index].Start;
206 const SCEV *End = RtCheck.Pointers[Index].End;
227 Members.push_back(Index);
286 for (unsigned Index = 0; Index < Pointers.size(); ++Index)
287 PositionMap[Pointers[Index].PointerValue] = Index;
793 // Make sure there is only one non-const index and analyze that
    [all...]
  /external/deqp/scripts/khr_util/
registry.py 84 class Index:
86 self.index = {}
111 return key in self.index
114 if key in self.index:
117 self.index[key] = item
126 return self.index[key]
141 class ElemNameIndex(Index):
148 class CommandIndex(Index):
152 class NameApiIndex(Index):
202 class NameIndex(Index)
    [all...]
  /external/llvm/lib/Object/
MachOObjectFile.cpp 356 // index is in the n_value field.
454 uint8_t index = Entry.n_sect; local
456 if (index == 0)
459 DRI.d.a = index - 1;
461 report_fatal_error("getSymbolSection: Invalid section index.");
904 // It is passed the index (0 - based) of the library as translated from
906 std::error_code MachOObjectFile::getLibraryShortNameByIndex(unsigned Index,
908 if (Index >= Libraries.size())
933 Res = LibrariesShortNames[Index];
963 basic_symbol_iterator MachOObjectFile::getSymbolByIndex(unsigned Index) const
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64TargetTransformInfo.cpp 295 unsigned Index) {
298 if (Index != -1U) {
306 // The type may be split. Normalize the index to the new type.
308 Index = Index % Width;
310 // The element at index zero is already inside the vector.
311 if (Index == 0)
368 // computation can more often be merged into the index mode. The resulting
  /external/mesa3d/src/gallium/drivers/radeonsi/
radeonsi_shader.c 138 * then you should pass the index of the first SGPR that holds the value. For
230 /* Load the buffer index is always, which is always stored in VGPR0
233 "llvm.SI.vs.load.buffer.index", uint->elem_type, NULL, 0,
373 (reg->Register.Index * 4) + swizzle);
382 unsigned index,
406 si_shader_ctx->radeon_bld.soa.outputs[index];
425 si_shader_ctx->radeon_bld.soa.outputs[index][chan];
475 unsigned index; local
486 shader->input[i].sid = d->Semantic.Index;
494 shader->output[i].sid = d->Semantic.Index;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.cpp     [all...]
StatepointLowering.cpp 117 /// stack slot index to which we have spilled value for previous statepoints.
218 Optional<int> Index =
220 if (!Index.hasValue())
224 Builder.FuncInfo.StatepointStackSlots.end(), *Index);
245 SDValue Loc = Builder.DAG.getTargetFrameIndex(*Index, Incoming.getValueType());
418 /// is a null constant. Return pair with first element being frame index
431 int Index = cast<FrameIndexSDNode>(Loc)->getIndex();
433 Loc = Builder.DAG.getTargetFrameIndex(Index, Incoming.getValueType());
440 Builder.DAG.getMachineFunction(), Index),
    [all...]
  /external/mesa3d/src/mesa/program/
program_parse.y 71 gl_register_file file, GLint index);
76 gl_register_file file, GLint index);
79 gl_register_file file, GLint index, GLuint swizzle);
648 && ($$.Index == VERT_RESULT_HPOS)) {
654 state->prog->OutputsWritten |= BITFIELD64_BIT($$.Index);
807 state->prog->InputsRead |= BITFIELD64_BIT($$.Base.Index);
822 state->prog->InputsRead |= BITFIELD64_BIT($$.Base.Index);
831 && ((unsigned) $3.Base.Index >= $1->param_binding_length)) {
844 $$.Base.Index = $3.Base.Index;
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas 83 /// The Lexer tracks line/col info as well as input index so its markers are
89 /// <see cref="IIntStream.Index"/>, or some other marker.</returns>
93 /// Return the current input symbol index 0..N where N indicates the
94 /// last symbol has been read. The index is the symbol about to be
97 function Index: Integer;
101 /// <see cref="IIntStream.Index"/> would return marker.
104 /// The marker will usually be <see cref="IIntStream.Index"/> but
142 /// Set the input cursor to the position indicated by index. This is
150 /// and in that its argument is strictly an input cursor (index).
162 /// The index is 0..N-1. A seek to position i means that LA(1) will retur
    [all...]
  /external/clang/utils/TableGen/
ClangDiagnosticsEmitter.cpp 549 // Warning associated with the diagnostic. This is stored as an index into
864 // Diagnostic name index generation
    [all...]
  /external/llvm/tools/yaml2obj/
yaml2coff.cpp 75 // Add string to the string table and format the index for output.
76 unsigned Index = getStringIndex(Name);
77 std::string str = utostr(Index);
102 // Add string to the string table and format the index for output.
103 unsigned Index = getStringIndex(Name);
105 Sym.Header.Name + 4) = Index;
125 unsigned Index = StringTable.size();
128 StringTableMap[Str] = Index;
129 return Index;
  /system/update_engine/payload_generator/
inplace_generator_unittest.cc 234 std::pair<Vertex::Index, Vertex::Index>(1, 0)));
362 vector<Vertex::Index> op_indexes;
373 vector<vector<Vertex::Index>::size_type> reverse_op_indexes;
403 vector<Vertex::Index> vect(graph.size());
405 for (vector<Vertex::Index>::size_type i = 0; i < vect.size(); ++i) {
470 vector<Vertex::Index> final_order;
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_pair_schedule.c 161 rc_register_file file, unsigned int index, unsigned int chan)
166 if (index >= RC_REGISTER_MAX_INDEX) {
167 rc_error(s->C, "%s: index %i out of bounds\n", __FUNCTION__, index);
171 return &s->Temporary[index].Values[chan];
535 src.Src[RC_PAIR_PRESUB_SRC].Index);
544 srcp.File, srcp.Index);
559 is_alpha, temp.File, temp.Index);
632 unsigned int index = 0; local
638 index = alpha->RGB.Src[oldsrc].Index
733 unsigned int index = emitted->U.P.RGB.Src[i].Index; local
750 unsigned int index = emitted->U.P.Alpha.Src[i].Index; local
    [all...]
radeon_dataflow_deadcode.c 119 static unsigned char * get_used_ptr(struct deadcode_state *s, rc_register_file file, unsigned int index)
122 if (index >= RC_REGISTER_MAX_INDEX) {
123 rc_error(s->C, "%s: index %i is out of bounds for file %i\n", __FUNCTION__, index, file);
128 return &s->R.Output[index];
130 return &s->R.Temporary[index];
134 if (index >= RC_NUM_SPECIAL_REGISTERS) {
135 rc_error(s->C, "%s: special file index %i out of bounds\n", __FUNCTION__, index);
139 return &s->R.Special[index];
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BufferedTreeNodeStream.cs 119 /** <summary>The complete mapping from stream index to tree node.
142 /** <summary>The index into the nodes list of the current node (next node
277 /** What is the stream index for node? 0..n-1
318 throw new InvalidOperationException("Cannot get the node at index i before the buffer is filled.");
348 int i = Index;
392 lastMarker = Index;
400 public virtual int Index {
414 public virtual void Seek(int index) {
418 p = index;
426 public virtual void Push(int index) {
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BufferedTreeNodeStream.cs 128 /** <summary>The complete mapping from stream index to tree node.
151 /** <summary>The index into the nodes list of the current node (next node
318 /** What is the stream index for node? 0..n-1
376 throw new InvalidOperationException( "Cannot get the node at index i before the buffer is filled." );
412 int i = Index;
464 lastMarker = Index;
473 public virtual int Index
491 public virtual void Seek( int index )
497 p = index;
505 public virtual void Push( int index )
    [all...]
  /external/llvm/include/llvm/ADT/
StringRef.h 206 char operator[](size_t Index) const {
207 assert(Index < Length && "Invalid index!");
208 return Data[Index];
249 /// \returns The index of the first occurrence of \p C, or npos if not
264 /// \returns The index of the first occurrence of \p Str, or npos if not
270 /// \returns The index of the last occurrence of \p C, or npos if not
285 /// \returns The index of the last occurrence of \p Str, or npos if not
410 /// \param Start The index of the starting character in the substring; if
411 /// the index is npos or greater than the length of the string then th
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 52 MO_FrameIndex, ///< Abstract Stack Frame Index
54 MO_TargetIndex, ///< Target-dependent index+offset operand.
63 MO_CFIIndex ///< MCCFIInstruction index.
174 int Index; // For MO_*Index - The index itself.
354 /// subregister Reg:SubReg. Take any existing SubReg index into account,
433 return Contents.OffsetedInfo.Val.Index;
529 Contents.OffsetedInfo.Val.Index = Idx;
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMachObjectWriter.cpp 399 unsigned Index = 0;
429 // The index is the section ordinal (1-based).
431 Index = Sec.getOrdinal() + 1;
445 (Index << 0) | (IsPCRel << 24) | (Log2Size << 25) | (Type << 28);
  /external/mesa3d/src/gallium/drivers/radeon/
radeon_setup_tgsi_llvm.c 55 unsigned radeon_llvm_reg_index_soa(unsigned index, unsigned chan)
57 return (index * 4) + chan;
92 bld->addr[reg->Indirect.Index][swizzle], "");
93 LLVMValueRef offset = lp_build_const_int32(gallivm, reg->Register.Index);
128 return LLVMConstBitCast(bld->immediates[reg->Register.Index][swizzle], ctype);
144 reg->Register.Index, chan)];
149 return bitcast(bld_base, type, ctx->inputs[radeon_llvm_reg_index_soa(reg->Register.Index, swizzle)]);
179 temp_ptr = lp_get_temp_ptr_soa(bld, reg->Register.Index, swizzle);
200 temp_ptr = lp_get_output_ptr(bld, reg->Register.Index, swizzle);
292 LLVMValueRef index = lp_build_const_int32(gallivm, chan) local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ANTLRStringStream.cs 53 /** <summary>0..n-1 index into string of next char</summary> */
59 /** <summary>The index of the character relative to the beginning of the line 0..n-1</summary> */
69 * A null is kept @ index 0. Create upon first call to mark().
112 * Return the current input symbol index 0..n where n indicates the
113 * last symbol has been read. The index is the index of char to
117 public virtual int Index {
246 * consume() ahead until p==index; can't just set p=index as we must
250 public virtual void Seek(int index) {
    [all...]
BaseRecognizer.cs 379 if (state.lastErrorIndex == input.Index) {
380 // uh oh, another error at same token index; must be a case
386 state.lastErrorIndex = input.Index;
    [all...]

Completed in 660 milliseconds

<<21222324252627282930>>