/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
TensorCustomOp.h | 28 typedef typename XprType::Index Index; 60 typedef typename internal::traits<TensorCustomUnaryOp>::Index Index; 83 typedef typename internal::traits<ArgType>::Index Index; 85 typedef DSizes<Index, NumDims> Dimensions; 127 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) const { 128 return m_result[index]; [all...] |
TensorAssign.h | 29 typedef typename promote_index_type<typename traits<LhsXprType>::Index, 30 typename traits<RhsXprType>::Index>::type Index; 68 typedef typename Eigen::internal::traits<TensorAssignOp>::Index Index; 92 typedef typename XprType::Index Index; 135 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void evalScalar(Index i) { 138 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void evalPacket(Index i) { 143 EIGEN_DEVICE_FUNC CoeffReturnType coeff(Index index) cons [all...] |
/external/eigen/unsupported/Eigen/src/AutoDiff/ |
AutoDiffJacobian.h | 45 typedef typename JacobianType::Index Index; 86 for (Index j=0; j<jac.rows(); j++) 89 for (Index i=0; i<jac.cols(); i++) 98 for (Index i=0; i<jac.rows(); i++)
|
/external/llvm/include/llvm/LTO/legacy/ |
ThinLTOCodeGenerator.h | 195 * Produce the combined summary index from all the bitcode files: 203 * Index is updated to reflect linkage changes from weak resolution. 205 void promote(Module &Module, ModuleSummaryIndex &Index); 211 ModuleSummaryIndex &Index); 217 void crossModuleImport(Module &Module, ModuleSummaryIndex &Index); 223 StringRef ModulePath, ModuleSummaryIndex &Index, 227 * Perform internalization. Index is updated to reflect linkage changes. 229 void internalize(Module &Module, ModuleSummaryIndex &Index);
|
/external/llvm/lib/LTO/ |
LTO.cpp | 73 // Resolve Weak and LinkOnce values in the \p Index. 80 ModuleSummaryIndex &Index, 89 for (auto &I : Index) 94 for (auto &I : Index) 111 // Update the linkages in the given \p Index to mark exported values 114 ModuleSummaryIndex &Index, 116 for (auto &I : Index)
|
/external/llvm/lib/Object/ |
ModuleSummaryIndexObjectFile.cpp | 1 //===- ModuleSummaryIndexObjectFile.cpp - Summary index file implementation ==// 27 : SymbolicFile(Binary::ID_ModuleSummaryIndex, Object), Index(std::move(I)) { 33 return std::move(Index); 70 // Looks for module summary index in the given memory buffer. 82 // Parse module summary index in the given memory buffer. 84 // module summary/index. 89 std::unique_ptr<ModuleSummaryIndex> Index; 101 Index = std::move(IOrErr.get()); 104 std::move(Index)); 107 // Parse the module summary index out of an IR file and return the summar [all...] |
/external/llvm/lib/Option/ |
OptTable.cpp | 189 Arg *OptTable::ParseOneArg(const ArgList &Args, unsigned &Index, 192 unsigned Prev = Index; 193 const char *Str = Args.getArgString(Index); 198 return new Arg(getOption(TheInputOptionID), Str, Index++, Str); 232 if (Arg *A = Opt.accept(Args, Index, ArgSize)) 236 if (Prev != Index) 243 return new Arg(getOption(TheInputOptionID), Str, Index++, Str); 245 return new Arg(getOption(TheUnknownOptionID), Str, Index++, Str); 258 unsigned Index = 0, End = ArgArr.size(); 259 while (Index < End) [all...] |
/external/swiftshader/third_party/subzero/pnacl-llvm/ |
NaClBitCodes.cpp | 73 unsigned &Index) { 76 if (Index >= Abbrev->getNumOperandInfos()) return; 78 const NaClBitCodeAbbrevOp &Op = Abbrev->getOperandInfo(Index); 83 ++Index; 85 PrintExpression(Stream, Abbrev, Index);
|
/external/eigen/Eigen/src/Core/ |
ProductEvaluators.h | 74 xpr.index() )) 143 Index dstRows = src.rows(); 144 Index dstCols = src.cols(); 278 const Index cols = dst.cols(); 279 for (Index j=0; j<cols; ++j) 280 func(dst.col(j), rhsEval.coeff(Index(0),j) * actual_lhs); 291 const Index rows = dst.rows(); 292 for (Index i=0; i<rows; ++i) 293 func(dst.row(i), lhsEval.coeff(i,Index(0)) * actual_rhs); 550 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const CoeffReturnType coeff(Index row, Index col) cons [all...] |
Solve.h | 72 EIGEN_DEVICE_FUNC Index rows() const { return m_dec.cols(); } 73 EIGEN_DEVICE_FUNC Index cols() const { return m_rhs.cols(); } 98 Scalar coeff(Index row, Index col) const; 99 Scalar coeff(Index i) const; 142 Index dstRows = src.rows(); 143 Index dstCols = src.cols(); 158 Index dstRows = src.rows(); 159 Index dstCols = src.cols(); 175 Index dstRows = src.rows() [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/DisplayEngineDxe/ |
ProcessOptions.c | 349 Return data element in an Array by its Index.
353 @param Index Zero based index for data in this array.
362 IN UINTN Index
372 Data = (UINT64) *(((UINT8 *) Array) + Index);
376 Data = (UINT64) *(((UINT16 *) Array) + Index);
380 Data = (UINT64) *(((UINT32 *) Array) + Index);
384 Data = (UINT64) *(((UINT64 *) Array) + Index);
396 Set value of a data element in an Array by its Index.
400 @param Index Zero based index for data in this array. [all...] |
/device/linaro/bootloader/edk2/MdePkg/Library/SmmMemLib/ |
SmmMemLib.c | 99 UINTN Index;
121 for (Index = 0; Index < mSmmMemLibInternalSmramCount; Index ++) {
122 if (((Buffer >= mSmmMemLibInternalSmramRanges[Index].CpuStart) && (Buffer < mSmmMemLibInternalSmramRanges[Index].CpuStart + mSmmMemLibInternalSmramRanges[Index].PhysicalSize)) ||
123 ((mSmmMemLibInternalSmramRanges[Index].CpuStart >= Buffer) && (mSmmMemLibInternalSmramRanges[Index].CpuStart < Buffer + Length))) {
133 mSmmMemLibInternalSmramRanges[Index].CpuStart, [all...] |
/external/eigen/Eigen/src/SparseCore/ |
SparseView.h | 58 inline Index rows() const { return m_matrix.rows(); } 59 inline Index cols() const { return m_matrix.cols(); } 61 inline Index innerSize() const { return m_matrix.innerSize(); } 62 inline Index outerSize() const { return m_matrix.outerSize(); } 96 EIGEN_STRONG_INLINE InnerIterator(const unary_evaluator& sve, Index outer) 152 EIGEN_STRONG_INLINE InnerIterator(const unary_evaluator& sve, Index outer) 171 EIGEN_STRONG_INLINE StorageIndex index() const { return m_inner; } function in class:Eigen::internal::unary_evaluator::InnerIterator 172 inline Index row() const { return IsRowMajor ? m_outer : index(); } 173 inline Index col() const { return IsRowMajor ? index() : m_outer; [all...] |
/external/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/ |
Symmetry.h | 260 typedef typename Tensor_::Index Index; 264 static inline int run(const std::array<Index, NumIndices>& transformed_indices, int transformation_flags, int dummy, Tensor_& tensor, const Scalar& value_) 279 typedef typename Tensor_::Index Index; 282 static inline int run(const std::array<Index, NumIndices>& transformed_indices, int transform_flags, int current_flags, const std::array<Index, NumIndices>& orig_indices) 300 typedef typename Tensor_::Index Index; 304 inline tensor_symmetry_value_setter(Tensor_& tensor, Symmetry_ const& symmetry, std::array<Index, NumIndices> const& indices [all...] |
/external/llvm/include/llvm/DebugInfo/CodeView/ |
TypeIndex.h | 96 TypeIndex() : Index(0) {} 97 explicit TypeIndex(uint32_t Index) : Index(Index) {} 99 : Index(static_cast<uint32_t>(Kind)) {} 101 : Index(static_cast<uint32_t>(Kind) | static_cast<uint32_t>(Mode)) {} 103 uint32_t getIndex() const { return Index; } 104 bool isSimple() const { return Index < FirstNonSimpleIndex; } 110 return static_cast<SimpleTypeKind>(Index & SimpleKindMask); 115 return static_cast<SimpleTypeMode>(Index & SimpleModeMask) [all...] |
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
tgsi_two_side.c | 55 uint face_input; /**< index of the FACE input */ 79 assert(decl->Semantic.Index < 2); 80 ts->front_color_input[decl->Semantic.Index] = decl->Range.First; 81 ts->front_color_interp[decl->Semantic.Index] = decl->Interp.Interpolate; 113 decl.Semantic.Index = i; 138 decl.Semantic.Index = 0; 153 inst.Dst[0].Register.Index = ts->new_colors[i]; 156 inst.Src[0].Register.Index = ts->face_input; 158 inst.Src[1].Register.Index = ts->back_color_input[i]; 160 inst.Src[2].Register.Index = ts->front_color_input[i] [all...] |
/system/update_engine/payload_generator/ |
cycle_breaker.cc | 50 // We arbitrarily order each vertex by its index in the graph. Thus, 75 vector<Vertex::Index> component_indexes; 79 for (vector<Vertex::Index>::iterator it = component_indexes.begin(); 82 for (vector<Vertex::Index>::iterator jt = component_indexes.begin(); 109 static_cast<vector<Vertex::Index>::size_type>(2)); 113 for (vector<Vertex::Index>::const_iterator it = stack_.begin(); 133 void CycleBreaker::Unblock(Vertex::Index u) { 138 Vertex::Index w = it->first; 146 for (vector<Vertex::Index>::const_iterator it = ++stack_.begin(), 156 bool CycleBreaker::Circuit(Vertex::Index vertex, Vertex::Index depth) [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/OobTx/ |
OobTx.c | 37 UINT32 Index;
152 for ( Index = 0; TX_MSGS_BEFORE > Index; Index++ ) {
202 for ( Index = 0; TX_MSGS_AFTER > Index; Index++ ) {
|
/device/linaro/bootloader/edk2/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressDxe/ |
ArmFvpDxe.c | 68 UINTN Index;
96 for (Index = 0; Index < HandleCount; Index++) {
98 HandleBuffer[Index],
126 Status = gBS->HandleProtocol (HandleBuffer[Index], &gEfiDevicePathProtocolGuid, (VOID **)&FvDevicePath);
137 if (Index == HandleCount) {
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/ |
Vtf.py | 98 Index = FvList.index(ComponentObj.CompLoc.upper())
99 if Index == 0:
104 elif Index == 1:
187 Index = 0
190 Index = Index + 1
191 OutputFileName = 'Vtf%d.raw' % Index
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/ |
SimpleFileParsing.c | 387 unsigned int Index;
408 Index = 1;
409 while (!EndOfFile (&mGlobals.SourceFile) && (Index < Len)) {
416 Str[Index] = mGlobals.SourceFile.FileBufferPtr[0];
418 Index++;
429 Str[Index] = 0;
440 Index = 0;
441 while (!EndOfFile (&mGlobals.SourceFile) && (Index < Len)) {
443 if (Index > 0) {
444 Str[Index] = 0; [all...] |
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/ |
LegacySio.c | 42 UINTN Index;
98 for (Index = 0; Index < HandleCount; Index++) {
100 Status = gBS->HandleProtocol (HandleBuffer[Index], &gEfiIsaIoProtocolGuid, (VOID **) &IsaIo);
155 HandleBuffer[Index],
200 Status = gBS->HandleProtocol (HandleBuffer[Index], &gEfiBlockIoProtocolGuid, (VOID **) &BlockIo);
220 // Status = gBS->HandleProtocol (HandleBuffer[Index], &gEfiSimplePointerProtocolGuid, &SimplePointer);
|
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/XhciPei/ |
XhciSched.c | 268 TrbStart->TrbCtrSetup.wIndex = Urb->Request->Index;
562 UINTN Index;
568 for (Index = 0; Index < Urb->Ring->TrbNumber; Index++) {
596 UINTN Index;
624 for (Index = 0; Index < Xhc->EventRing.TrbNumber; Index++) {
770 UINTN Index;
[all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbMassStorageDxe/ |
UsbMassImpl.c | 395 UINT8 Index;
424 for (Index = 0; Index < USB_MASS_TRANSPORT_COUNT; Index++) {
425 *Transport = mUsbMassTransport[Index];
483 UINT8 Index;
490 for (Index = 0; Index <= MaxLun; Index++) {
492 DEBUG ((EFI_D_INFO, "UsbMassInitMultiLun: Start to initialize No.%d logic unit\n", Index));
[all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Library/DeviceManagerLib/ |
DeviceManager.c | 116 UINTN Index;
150 for (Index = 0; Index < HwAddressSize; Index++) {
152 if (Index < HwAddressSize - 1) {
197 UINTN Index;
205 for (Index = 0; Index < mMacDeviceList.CurListLen; Index ++) {
206 StoredString = HiiGetString (HiiHandle, mMacDeviceList.NodeList[Index].PromptId, NULL); [all...] |