HomeSort by relevance Sort by last modified time
    Searched refs:Index (Results 401 - 425 of 983) sorted by null

<<11121314151617181920>>

  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_program_print.c 112 static void rc_print_inline_float(FILE * f, int index)
114 int r300_exponent = (index >> 3) & 0xf;
115 unsigned r300_mantissa = index & 0x7;
124 fprintf(f, "%f (0x%x)", *print_float, index);
128 static void rc_print_register(FILE * f, rc_register_file file, int index, unsigned int reladdr)
133 switch(index) {
135 default: fprintf(f, "special[%i]", index); break;
138 rc_print_inline_float(f, index);
149 fprintf(f, "%s[%i%s]", filename, index, reladdr ? " + addr[0]" : "");
163 rc_print_register(f, dst.File, dst.Index, 0)
    [all...]
radeon_inline_literals.c 93 &c->Program.Constants.Constants[src_reg->Index];
135 src_reg->Index = r300_float;
  /frameworks/av/media/libeffects/lvm/lib/Reverb/src/
LVREV_ApplyNewSettings.c 378 LVM_INT32 Index=0;
408 Index=i;
414 if(RoomSize==LVREV_GainPolyTable[Index][0])
419 Coefs[i-1]=LVREV_GainPolyTable[Index][i];
431 Tot_Dist=LVREV_GainPolyTable[Index][0]-LVREV_GainPolyTable[Index-1][0];
432 Dist=RoomSize-LVREV_GainPolyTable[Index-1][0];
438 Coefs[i-1]=LVREV_GainPolyTable[Index-1][i];
447 Coefs[i-1]=LVREV_GainPolyTable[Index][i];
472 Index=((32767*100)/(100+pPrivate->NewParams.Level))
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tools.Tests.pas 262 Index: Integer;
269 Index := 2;
270 ReturnValue := FIList.GetItem(Index);
277 Index: Integer;
284 Index := 3;
286 FIList.SetItem(Index, Value);
320 Index: Integer;
327 Index := 2;
329 FIList.Insert(Index, Value);
352 Index: Integer
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_scan.c 97 int ind = src->Register.Index;
116 src->Register.Index == 0 &&
160 info->input_semantic_index[reg] = (ubyte)fulldecl->Semantic.Index;
171 unsigned index = fulldecl->Range.First; local
174 info->system_value_semantic_name[index] = semName;
176 index + 1);
192 info->output_semantic_index[reg] = (ubyte)fulldecl->Semantic.Index;
311 src->Register.Index != dst->Register.Index ||
  /external/llvm/include/llvm/Option/
ArgList.h 195 /// getArgString - Return the input argument string at \p Index.
196 virtual const char *getArgString(unsigned Index) const = 0;
280 /// string at \p Index if possible.
281 const char *GetOrMakeJoinedArgString(unsigned Index, StringRef LHS,
310 virtual const char *getArgString(unsigned Index) const {
311 return ArgStrings[Index];
322 /// MakeIndex - Get an index for the given string(s).
344 virtual const char *getArgString(unsigned Index) const {
345 return BaseArgs.getArgString(Index);
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_scan.c 97 int ind = src->Register.Index;
116 src->Register.Index == 0 &&
160 info->input_semantic_index[reg] = (ubyte)fulldecl->Semantic.Index;
171 unsigned index = fulldecl->Range.First; local
174 info->system_value_semantic_name[index] = semName;
176 index + 1);
192 info->output_semantic_index[reg] = (ubyte)fulldecl->Semantic.Index;
311 src->Register.Index != dst->Register.Index ||
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTreeNodeStream.cs 70 public virtual int Index {
72 return input.Index;
157 public virtual void Seek(int index) {
159 // db.seek(index);
160 input.Seek(index);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTreeNodeStream.cs 76 public virtual int Index
80 return input.Index;
183 public virtual void Seek( int index )
186 // db.seek(index);
187 input.Seek( index );
  /external/chromium/base/win/
registry.h 49 LONG ReadName(int index, std::wstring* name) const;
121 int Index() const { return index_; }
130 // Current index of the iteration.
158 int Index() const { return index_; }
167 // Current index of the iteration.
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_linkage.c 87 unsigned idx = finst->Dst[i].Register.Index;
100 unsigned idx = finst->Src[i].Register.Index;
u_pstipple.c 304 decl.Semantic.Index = 0;
326 * The index/position of this immediate will be pctx->numImmed
349 * We'd like to use non-normalized texcoords to index into a RECT
361 newInst.Dst[0].Register.Index = pctx->texTemp;
364 newInst.Src[0].Register.Index = wincoordInput;
366 newInst.Src[1].Register.Index = pctx->numImmed;
374 newInst.Dst[0].Register.Index = pctx->texTemp;
379 newInst.Src[0].Register.Index = pctx->texTemp;
381 newInst.Src[1].Register.Index = pctx->freeSampler;
390 newInst.Src[0].Register.Index = pctx->texTemp
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_inline_literals.c 93 &c->Program.Constants.Constants[src_reg->Index];
135 src_reg->Index = r300_float;
r300_fragprog_emit.c 83 static void use_temporary(struct r300_fragment_program_code *code, unsigned int index)
85 if (index > code->pixsize)
86 code->pixsize = index;
95 return src.Index | (1 << 5);
97 use_temporary(code, src.Index);
98 return src.Index & 0x1f;
171 if (inst->RGB.Src[j].Index >= R300_PFS_NUM_TEMP_REGS)
178 if (inst->Alpha.Src[j].Index >= R300_PFS_NUM_TEMP_REGS)
196 switch(inst->RGB.Src[RC_PAIR_PRESUB_SRC].Index) {
219 switch(inst->Alpha.Src[RC_PAIR_PRESUB_SRC].Index) {
    [all...]
  /external/eigen/test/
cholesky.cpp 63 typedef typename MatrixType::Index Index;
67 Index rows = m.rows();
68 Index cols = m.cols();
197 typedef typename MatrixType::Index Index;
199 Index rows = m.rows();
200 Index cols = m.cols();
swap.cpp 31 typename MatrixType::Index rows = m.rows();
32 typename MatrixType::Index cols = m.cols();
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
StripBox.java 143 if (getBuffer(Type.Index) == null){
144 setBuffer(Type.Index, 3, BufferUtils.createShortBuffer(GEOMETRY_INDICES_DATA));
  /external/llvm/include/llvm/Analysis/
TargetTransformInfo.h 278 SK_InsertSubvector, ///< InsertSubvector. Index indicates start offset.
279 SK_ExtractSubvector ///< ExtractSubvector Index indicates start offset.
308 /// The index and subtype parameters are used by the subvector insertion and
310 virtual unsigned getShuffleCost(ShuffleKind Kind, Type *Tp, int Index = 0,
327 /// Use -1 to indicate that there is no information on the index value.
329 unsigned Index = -1) const;
  /external/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp 85 // Base + Disp + Index, where Base and Index are LLVM registers or 0.
91 unsigned Index : 8;
151 const MCExpr *Disp, unsigned Index,
157 Op->Mem.Index = Index;
209 (MemKind == BDXMem || !Mem.Index) &&
244 assert(Kind == KindMem && Mem.Index == 0 && "Invalid operand type");
253 Inst.addOperand(MCOperand::CreateReg(Mem.Index));
318 unsigned &Index, const MCExpr *&Length
    [all...]
  /external/llvm/lib/Target/SystemZ/Disassembler/
SystemZDisassembler.cpp 207 uint64_t Index = Field >> 16;
210 assert(Index < 16 && "Invalid BDXAddr12");
213 Inst.addOperand(MCOperand::CreateReg(Index == 0 ? 0 : Regs[Index]));
219 uint64_t Index = Field >> 24;
222 assert(Index < 16 && "Invalid BDXAddr20");
225 Inst.addOperand(MCOperand::CreateReg(Index == 0 ? 0 : Regs[Index]));
  /external/mesa3d/src/gallium/auxiliary/util/
u_linkage.c 87 unsigned idx = finst->Dst[i].Register.Index;
100 unsigned idx = finst->Src[i].Register.Index;
u_pstipple.c 304 decl.Semantic.Index = 0;
326 * The index/position of this immediate will be pctx->numImmed
349 * We'd like to use non-normalized texcoords to index into a RECT
361 newInst.Dst[0].Register.Index = pctx->texTemp;
364 newInst.Src[0].Register.Index = wincoordInput;
366 newInst.Src[1].Register.Index = pctx->numImmed;
374 newInst.Dst[0].Register.Index = pctx->texTemp;
379 newInst.Src[0].Register.Index = pctx->texTemp;
381 newInst.Src[1].Register.Index = pctx->freeSampler;
390 newInst.Src[0].Register.Index = pctx->texTemp
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentSkipListMap.java 70 * list in which the index levels are represented in separate
75 * for the heavily-traversed index lists than can be used for the
77 * possible list with 2 levels of index:
79 * Head nodes Index nodes
196 * Index levels are maintained as lists with volatile next fields,
197 * using CAS to link and unlink. Races are allowed in index-list
198 * operations that can (rarely) fail to link in a new index node
200 * However, even when this happens, the index lists remain sorted,
208 * The fact that retries (for both base and index lists) are
217 * Unlike most skip-list implementations, index insertion an
    [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs 457 return _isRepG0[state.Index].GetPrice0() +
458 _isRep0Long[(state.Index << Base.kNumPosStatesBitsMax) + posState].GetPrice0();
466 price = _isRepG0[state.Index].GetPrice0();
467 price += _isRep0Long[(state.Index << Base.kNumPosStatesBitsMax) + posState].GetPrice1();
471 price = _isRepG0[state.Index].GetPrice1();
473 price += _isRepG1[state.Index].GetPrice0();
476 price += _isRepG1[state.Index].GetPrice1();
477 price += _isRepG2[state.Index].GetPrice(repIndex - 2);
608 _optimum[1].Price = _isMatch[(_state.Index << Base.kNumPosStatesBitsMax) + posState].GetPrice0() +
612 UInt32 matchPrice = _isMatch[(_state.Index << Base.kNumPosStatesBitsMax) + posState].GetPrice1();
    [all...]
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 111 // This holds the symbol table index of the last local symbol.
113 // This holds the .strtab section index.
115 // This holds the .symtab section index.
276 /// \param SectionIndexMap - Maps a section to its index.
451 uint16_t Index = (shndx >= ELF::SHN_LORESERVE && !Reserved) ?
458 String16(*SymtabF, Index); // st_shndx
467 String16(*SymtabF, Index); // st_shndx
584 // The string table must be emitted first because we need the index
705 int Index = 0;
733 Index = F->getParent()->getOrdinal() + 1
    [all...]

Completed in 763 milliseconds

<<11121314151617181920>>