Searched defs:Index (Results 1 - 25 of 638) sorted by last modified time

1234567891011>>

/external/webrtc/webrtc/modules/video_capture/windows/
H A Dsink_filter_ds.cc408 CaptureSinkFilter::GetPin(IN int Index) argument
412 if (Index == 0)
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dbandwidth_estimator.c140 * - Index : integer (range 0...23) indicating bottle neck &
152 const uint16_t Index)
187 /* The function also checks if Index has a valid value */
188 errCode = WebRtcIsacfix_UpdateUplinkBwRec(bweStr, Index);
547 /* Index - integer (range 0...23) indicating bottle neck & jitter as estimated by other side */
550 const int16_t Index)
556 if ( (Index < 0) || (Index > 23) ) {
562 if ( Index > 11 ) {
563 RateInd = Index
146 WebRtcIsacfix_UpdateUplinkBwImpl(BwEstimatorstr *bweStr, const uint16_t rtpNumber, const int16_t frameSize, const uint32_t sendTime, const uint32_t arrivalTime, const size_t pksize, const uint16_t Index) argument
549 WebRtcIsacfix_UpdateUplinkBwRec(BwEstimatorstr *bweStr, const int16_t Index) argument
[all...]
/external/vboot_reference/utility/
H A Defidecompress.c212 UINT16 Index; local
220 for (Index = 1; Index <= 16; Index++) {
221 Count[Index] = 0;
224 for (Index = 0; Index < NumOfChar; Index++) {
225 Count[BitLen[Index]]++;
230 for (Index
396 UINT16 Index; local
469 UINT16 Index; local
751 UINT32 Index; local
[all...]
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DSTLExtras.h750 result_pair(std::size_t Index, X Value) : Index(Index), Value(Value) {} argument
752 const std::size_t Index; member in struct:llvm::detail::enumerator_impl::result_pair
762 iterator(IterOfRange<R> &&Iter, std::size_t Index) argument
763 : Iter(Iter), Index(Index) {}
765 result_type operator*() const { return result_type(Index, *Iter); }
769 ++Index;
777 std::size_t Index; member in class:llvm::detail::enumerator_impl::iterator
[all...]
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DFormatVariadic.h51 ReplacementItem(StringRef Spec, size_t Index, size_t Align, AlignStyle Where, argument
53 : Type(ReplacementType::Format), Spec(Spec), Index(Index), Align(Align),
58 size_t Index = 0; member in struct:llvm::ReplacementItem
105 if (R.Index >= Adapters.size()) {
110 auto W = Adapters[R.Index];
/external/swiftshader/third_party/subzero/crosstest/
H A Dinsertelement.h23 setElement(VectorType &Value, size_t Index, ElementType Element) { argument
24 Value[Index] = Element;
H A Dtest_arith_main.cpp203 PRNG Index; local
208 ElementTypeUnsigned Element1 = Values[Index() % NumValues];
209 ElementTypeUnsigned Element2 = Values[Index() % NumValues];
338 PRNG Index; local
343 setElement(Value1, j, Values[Index() % NumValues]);
344 setElement(Value2, j, Values[Index() % NumValues]);
H A Dtest_cast_main.cpp127 PRNG Index; local
139 Value[j] = Values[Index() % NumValues];
H A Dtest_icmp_main.cpp232 PRNG Index; local
237 setElement(Value1, j, Values[Index() % NumValues]);
238 setElement(Value2, j, Values[Index() % NumValues]);
321 PRNG Index; local
326 setElement(Value1, j, Index() % 2);
327 setElement(Value2, j, Index() % 2);
H A Dtest_select_main.cpp43 PRNG Index; local
48 setElement(Cond, j, Index() % 2);
49 setElement(Value1, j, Values[Index() % NumValues]);
50 setElement(Value2, j, Values[Index() % NumValues]);
79 PRNG Index; local
84 setElement(Cond, j, Index() % 2);
85 setElement(Value1, j, Values[Index() % NumValues]);
86 setElement(Value2, j, Values[Index() % NumValues]);
109 PRNG Index; local
114 setElement(Cond, j, Index()
[all...]
/external/swiftshader/third_party/subzero/pnacl-llvm/
H A DNaClBitCodes.cpp73 unsigned &Index) {
76 if (Index >= Abbrev->getNumOperandInfos()) return;
78 const NaClBitCodeAbbrevOp &Op = Abbrev->getOperandInfo(Index);
83 ++Index;
85 PrintExpression(Stream, Abbrev, Index);
71 PrintExpression(raw_ostream &Stream, const NaClBitCodeAbbrev *Abbrev, unsigned &Index) argument
/external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
H A DNaClBitcodeParser.h326 void SetAbbreviationIndex(unsigned Index) { argument
327 Entry.ID = Index;
/external/swiftshader/third_party/subzero/runtime/
H A Dwasm-runtime.cpp63 uint32_t pageNum(uint32_t Index) { return Index >> PageSizeLog2; } argument
90 template <typename T> T *wasmPtr(int Index) { argument
91 if (pageNum(Index) < WASM_NUM_PAGES) {
92 return reinterpret_cast<T *>(WASM_MEMORY + Index);
126 T &operator[](unsigned int Index) const { return wasmPtr<T>(Ptr)[Index]; }
221 #define WASM_REF(Type, Index) (WasmPtr<Type>(Index).asPtr())
222 #define WASM_DEREF(Type, Index) (*WASM_RE
[all...]
/external/swiftshader/third_party/subzero/src/
H A DIceCfg.cpp121 SizeT Index = Variables.size(); local
124 Var = VariableVecOn32::create(this, Ty, Index);
126 Var = Variable64On32::create(this, Ty, Index);
128 Var = Variable::create(this, Ty, Index);
304 int Index = Pending.find_first(); local
305 if (Index == -1)
307 Pending.reset(Index);
308 Reachable.set(Index);
309 CfgNode *Node = Nodes[Index];
310 assert(Node->getIndex() == (SizeT)Index);
1499 auto *Index = llvm::cast<ConstantInteger32>(Extracts[Pos]->getSrc(1)); local
[all...]
H A DIceCfg.h120 SizeT Index = Variables.size(); local
121 auto *Var = T::create(this, Ty, Index);
H A DIceGlobalContext.cpp448 // Ensure Pending is large enough that Pending[Index] is valid.
450 uint32_t Index) {
451 if (Index >= Pending->size())
452 Utils::reserveAndResize(*Pending, Index + 1);
449 resizePending(std::vector<std::unique_ptr<EmitterWorkItem>> *Pending, uint32_t Index) argument
H A DIceInst.cpp180 SizeT Index = 0; local
184 LREndedBits LeftMask = OrigInst->LiveRangesEnded & ((1 << Index) - 1);
185 LREndedBits RightMask = OrigInst->LiveRangesEnded >> (Index + 1);
186 LiveRangesEnded = LeftMask | (SpliceAssn->LiveRangesEnded << Index) |
187 (RightMask << (Index + getSrc(I)->getNumVars()));
190 Index += getSrc(I)->getNumVars();
206 SizeT Index = Var->getIndex(); local
207 if (Live[Index])
209 Live[Index] = true;
631 const SizeT Index local
[all...]
H A DIceInst.h111 void replaceSource(SizeT Index, Operand *Replacement) {
112 assert(Index < getSrcSize());
114 Srcs[Index] = Replacement;
672 CfgNode *getLabel(SizeT Index) const { return Labels[Index]; }
673 void setLabel(SizeT Index, CfgNode *Label) { Labels[Index] = Label; } argument
990 void addIndex(ConstantInteger32 *Index) { argument
992 Indexes[CurrentIndex++] = Index;
H A DIceInstARM32.cpp327 : OperandARM32(kMem, Ty), Base(Base), ImmOffset(ImmOffset), Index(nullptr),
336 Variable *Index, ShiftKind ShiftOp,
338 : OperandARM32(kMem, Ty), Base(Base), ImmOffset(0), Index(Index),
340 if (Index->isRematerializable()) {
341 llvm::report_fatal_error("Rematerializable Index Register is not allowed.");
346 Vars[1] = Index;
1337 Register getDRegister(const Variable *Src, uint32_t Index) { argument
1348 if (Index < NumElements / 2) {
1386 uint32_t getDIndex(Type Ty, uint32_t NumElements, uint32_t Index) { argument
335 OperandARM32Mem(Cfg *Func, Type Ty, Variable *Base, Variable *Index, ShiftKind ShiftOp, uint16_t ShiftAmt, AddrMode Mode) argument
1394 getSRegister(const Variable *Src, uint32_t Index) argument
1501 const uint32_t Index = local
1504 Str << "[" << Index << "], "; local
[all...]
H A DIceInstARM32.h114 Variable *Index, ShiftKind ShiftOp = kNoShift,
118 OperandARM32Mem(Func, Ty, Base, Index, ShiftOp, ShiftAmt, Mode);
122 Variable *getIndex() const { return Index; }
127 bool isRegReg() const { return Index != nullptr; }
154 OperandARM32Mem(Cfg *Func, Type Ty, Variable *Base, Variable *Index,
159 Variable *Index; member in class:Ice::ARM32::OperandARM32Mem
349 static StackVariable *create(Cfg *Func, Type Ty, SizeT Index) { argument
350 return new (Func->allocate<StackVariable>()) StackVariable(Func, Ty, Index);
362 StackVariable(const Cfg *Func, Type Ty, SizeT Index) argument
363 : Variable(Func, StackVariableKind, Ty, Index) {}
113 create(Cfg *Func, Type Ty, Variable *Base, Variable *Index, ShiftKind ShiftOp = kNoShift, uint16_t ShiftAmt = 0, AddrMode Mode = Offset) argument
1469 create(Cfg *Func, Variable *Dest, Variable *Src0, uint32_t Index, CondARM32::Cond Predicate) argument
1479 InstARM32Extract(Cfg *Func, Variable *Dest, Variable *Src0, uint32_t Index, CondARM32::Cond Predicate) argument
1487 const uint32_t Index; member in class:Ice::ARM32::final
1498 create(Cfg *Func, Variable *Dest, Variable *Src0, uint32_t Index, CondARM32::Cond Predicate) argument
1508 InstARM32Insert(Cfg *Func, Variable *Dest, Variable *Src0, uint32_t Index, CondARM32::Cond Predicate) argument
1516 const uint32_t Index; member in class:Ice::ARM32::final
[all...]
H A DIceInstX8632.cpp78 Cfg *Func, Type Ty, Variable *Base, Constant *Offset, Variable *Index,
80 : X86Operand(kMem, Ty), Base(Base), Offset(Offset), Index(Index),
87 if (Index)
94 if (Index)
95 Vars[I++] = Index;
154 // Emit as Offset(Base,Index,1<<Shift). Offset is emitted without the leading
155 // '$'. Omit the (Base,Index,1<<Shift) part if Base==nullptr.
77 X86OperandMem( Cfg *Func, Type Ty, Variable *Base, Constant *Offset, Variable *Index, uint16_t Shift, SegmentRegisters SegmentReg, bool IsRebased) argument
H A DIceInstX8664.cpp69 Variable *Index, uint16_t Shift,
71 : X86Operand(kMem, Ty), Base(Base), Offset(Offset), Index(Index),
78 if (Index)
85 if (Index)
86 Vars[I++] = Index;
123 // Emit as Offset(Base,Index,1<<Shift). Offset is emitted without the leading
124 // '$'. Omit the (Base,Index,1<<Shift) part if Base==nullptr.
140 if (Base == nullptr && Index == nullptr) {
152 if (Base == nullptr && Index
66 X86OperandMem(Cfg *Func, Type Ty, Variable *Base, Constant *Offset, Variable *Index, uint16_t Shift, bool IsRebased) argument
[all...]
H A DIceLiveness.cpp54 SizeT Index = VMetadata->getLocalUseNode(Var)->getIndex(); local
55 ++Nodes[Index].NumLocals;
H A DIceLiveness.h86 SizeT Index = Node->getIndex(); local
87 resize(Index);
88 return Nodes[Index].LiveIn;
91 SizeT Index = Node->getIndex(); local
92 resize(Index);
93 return Nodes[Index].LiveOut;
97 SizeT Index = Node->getIndex(); local
98 resize(Index);
99 return &Nodes[Index].LiveBegin;
102 SizeT Index local
129 resize(SizeT Index) argument
[all...]
H A DIceLoopAnalyzer.cpp65 void visit(IndexT VisitIndex) { Index = LowLink = VisitIndex; }
66 bool isVisited() const { return Index != UndefinedIndex; }
67 IndexT getIndex() const { return Index; }
89 IndexT Index; member in class:Ice::LoopAnalyzer::LoopNode
124 Index = LowLink = UndefinedIndex;

Completed in 477 milliseconds

1234567891011>>