/prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Object/ |
MachOUniversal.h | 37 /// \brief Index of object in the universal binary. 38 uint32_t Index; 44 ObjectForArch(const MachOUniversalBinary *Parent, uint32_t Index); 48 Index = 0; 52 return (Parent == Other.Parent) && (Index == Other.Index); 55 ObjectForArch getNext() const { return ObjectForArch(Parent, Index + 1); }
|
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/ |
TypeTableBuilder.h | 72 uint32_t Index = TypeIndex::FirstNonSimpleIndex; 75 Func(TypeIndex(Index), Record); 76 ++Index; 118 TypeIndex Index; 120 Index = TypeTable.writeSerializedRecord(Record); 122 return Index;
|
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Object/ |
MachOUniversal.h | 37 /// \brief Index of object in the universal binary. 38 uint32_t Index; 44 ObjectForArch(const MachOUniversalBinary *Parent, uint32_t Index); 48 Index = 0; 52 return (Parent == Other.Parent) && (Index == Other.Index); 55 ObjectForArch getNext() const { return ObjectForArch(Parent, Index + 1); }
|
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/ |
BufferImage.c | 260 UINTN Index;
310 for (Index = 0; Index < 0x08 && Index < Line->Size; Index++) {
315 if (Index + 1 >= ColStart && Index + 1 <= ColEnd) {
326 Pos = 10 + (Index * 3);
327 if (Line->Buffer[Index] < 0x10) {
332 if (Index < 0x07) { [all...] |
/device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/AcpiTablesPCAT/ |
INTELGFX.ASL | 85 Store(Or(0x10000,DID1),Index(TMP0,0))
87 Store(0x00020F38, Index(TMP0,1))
92 Store(Or(0x10000,DID1),Index(TMP1,0))
102 Store(Or(0x10000,DID1),Index(TMP2,0))
103 Store(Or(0x10000,DID2),Index(TMP2,1))
105 Store(0x00020F38, Index(TMP2,2))
110 Store(Or(0x10000,DID1),Index(TMP3,0))
111 Store(Or(0x10000,DID2),Index(TMP3,1))
121 Store(Or(0x10000,DID1),Index(TMP4,0))
122 Store(Or(0x10000,DID2),Index(TMP4,1)) [all...] |
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
TensorReduction.h | 31 typedef typename XprTraits::Index Index; 77 template <typename InputDims, typename Index, size_t Rank> EIGEN_DEVICE_FUNC 79 Sizes<>*, array<Index, Rank>* reduced_dims) { 131 static EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void reduce(const Self& self, typename Self::Index firstIndex, Op& reducer, typename Self::CoeffReturnType* accum) { 134 const typename Self::Index input = firstIndex + j * self.m_reducedStrides[DimIndex]; 141 static EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void reduce(const Self& self, typename Self::Index firstIndex, Op& reducer, typename Self::CoeffReturnType* accum) { 143 const typename Self::Index input = firstIndex + j * self.m_reducedStrides[0]; 150 static EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void reduce(const Self& self, typename Self::Index index, Op& reducer, typename Self::CoeffReturnType* accum) [all...] |
TensorContractionCuda.h | 19 template<typename Scalar, typename Index, typename LhsMapper, 24 const Index m_size, const Index n_size, const Index k_size) { 26 const Index m_block_idx = blockIdx.x; 27 const Index n_block_idx = blockIdx.y; 29 const Index base_m = 64 * m_block_idx; 30 const Index base_n = 64 * n_block_idx; 57 // index is shared by both sides, then the contracting index should be in threadIdx.x [all...] |
/external/llvm/lib/IR/ |
LegacyPassManager.cpp | 203 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { 204 BasicBlockPass *BP = getContainedPass(Index); 353 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { 354 ModulePass *MP = getContainedPass(Index); 898 for (unsigned Index = 0; Index < PMT_Last; ++Index) [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbBusDxe/ |
UsbHub.c | 134 // In USB bus, all the port index starts from 0. But HUB
329 // In USB bus, all the port index starts from 0. But HUB
439 // In USB bus, all the port index starts from 0. But HUB
699 UINT8 Index;
712 for (Index = 0; Index < NumEndpoints; Index++) {
713 ASSERT ((Setting->Endpoints != NULL) && (Setting->Endpoints[Index] != NULL));
715 EpDesc = Setting->Endpoints[Index];
723 if (Index == NumEndpoints) { [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/BdsDxe/ |
BdsEntry.c | 140 UINTN Index;
165 Status = gBS->WaitForEvent (2, WaitList, &Index);
172 if (Index == 1) {
180 Status = gBS->WaitForEvent (1, &Event, &Index);
182 ASSERT (Index == 0);
279 UINTN Index;
284 for (Index = 0; Index < BootOptionCount; Index++) {
290 if ((BootOptions[Index].Attributes & LOAD_OPTION_ACTIVE) == 0) { [all...] |
/device/linaro/bootloader/edk2/OptionRomPkg/UndiRuntimeDxe/ |
Init.c | 53 UINT16 Index;
67 for (Index = 0; Index < (pxe_31->IFcnt | pxe_31->IFcntExt << 8); Index++) {
68 UNDI32DeviceList[Index]->NIIProtocol_31.Id = (UINT64) (UINTN) Pxe31Pointer;
71 (VOID **) &(UNDI32DeviceList[Index])
82 for (Index = 0; Index <= PXE_OPCODE_LAST_VALID; Index++) {
85 (VOID **) &api_table[Index].api_ptr [all...] |
/external/eigen/Eigen/src/Core/ |
CoreEvaluators.h | 21 // Default assumes index based accessors 161 CoeffReturnType coeff(Index row, Index col) const 170 CoeffReturnType coeff(Index index) const 172 return m_data[index]; 176 Scalar& coeffRef(Index row, Index col) 185 Scalar& coeffRef(Index index) [all...] |
Transpositions.h | 24 typedef Eigen::Index Index; ///< \deprecated since Eigen 3.3 49 Index size() const { return indices().size(); } 51 Index rows() const { return indices().size(); } 53 Index cols() const { return indices().size(); } 55 /** Direct access to the underlying index vector */ 56 inline const StorageIndex& coeff(Index i) const { return indices().coeff(i); } 57 /** Direct access to the underlying index vector */ 58 inline StorageIndex& coeffRef(Index i) { return indices().coeffRef(i); } 59 /** Direct access to the underlying index vector * [all...] |
TriangularMatrix.h | 59 inline Index rows() const { return derived().rows(); } 61 inline Index cols() const { return derived().cols(); } 63 inline Index outerStride() const { return derived().outerStride(); } 65 inline Index innerStride() const { return derived().innerStride(); } 68 void resize(Index rows, Index cols) 76 inline Scalar coeff(Index row, Index col) const { return derived().coeff(row,col); } 78 inline Scalar& coeffRef(Index row, Index col) { return derived().coeffRef(row,col); [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/C/GenVtf/ |
GenVtf.c | 173 UINTN Index;
186 Index = 0;
189 while ((Char = Line[Index]) != 0) {
193 Index++;
503 UINTN Index;
530 for (Index = 0; Index < (2 * ValidLineNum); Index++) {
560 for (Index1 = 0; Index1 < Index; Index1 ++) {
773 UINTN Index;
[all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/DisplayEngineDxe/ |
FormDisplay.c | 428 @param Index Where in InputString to start the copy process
440 IN OUT UINTN *Index,
451 if (InputString == NULL || Index == NULL || OutputString == NULL) {
471 if ((InputString[*Index] == NARROW_CHAR) && (InputString[*Index + 1] == CHAR_CARRIAGE_RETURN)) {
472 *Index = *Index + 2;
479 switch (InputString[*Index + StrOffset]) {
500 if ((InputString[*Index + StrOffset] == CHAR_SPACE) && (GlyphOffset <= LineWidth)) {
533 if (StrOffset == 0 && (InputString[*Index + StrOffset] == CHAR_NULL)) { [all...] |
/device/linaro/bootloader/edk2/ArmPkg/Application/LinuxLoader/ |
LinuxLoaderFdt.c | 155 UINTN Index;
298 for (Index = 0; Index < (MemoryMapSize / DescriptorSize); Index++) {
320 for (Index = 0; Index < gST->NumberOfTableEntries; Index++) {
322 if (CompareGuid (&gArmMpCoreInfoGuid, &(gST->ConfigurationTable[Index].VendorGuid))) {
340 ArmProcessorTable = (ARM_PROCESSOR_TABLE *)gST->ConfigurationTable[Index].VendorTable;
343 for (Index = 0; Index < ArmProcessorTable->NumberOfEntries; Index++) { [all...] |
/device/linaro/bootloader/edk2/ArmPlatformPkg/Library/EblCmdLib/Arm/ |
EblCmdMmu.c | 71 UINT32 Index;
79 IN UINT32 Index
84 Entry.Value = Table[Index];
86 Entry.Index = Index;
296 UINT32 Index = 0, Count;
307 for (; (Index < Count) && (!MmuEntryIsValidAddress(Level,Table[Index])); Index++);
309 LastEntry = MmuEntryCreate(Level,Table,Index);
[all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/XhciDxe/ |
Xhci.c | 377 UINTN Index;
430 for (Index = 0; Index < MapSize; Index++) {
431 if (XHC_BIT_IS_SET (State, mUsbPortStateMap[Index].HwState)) {
432 PortStatus->PortStatus = (UINT16) (PortStatus->PortStatus | mUsbPortStateMap[Index].UefiState);
444 for (Index = 0; Index < MapSize; Index++) {
445 if (XHC_BIT_IS_SET (State, mUsbPortChangeMap[Index].HwState)) { [all...] |
/device/linaro/bootloader/edk2/MdePkg/Library/UefiUsbLib/ |
UsbDxeLib.c | 25 and Index, and return the descriptor in the buffer specified by Descriptor.
33 @param Index The device request index.
52 IN UINT16 Index,
69 DevReq.Index = Index;
88 Value, and Index, and set the descriptor using the buffer specified by DesriptorLength
96 @param Index The device request index.
112 IN UINT16 Index,
[all...] |
/external/eigen/Eigen/src/SparseCore/ |
AmbiVector.h | 30 explicit AmbiVector(Index size) 39 Index nonZeros() const; 42 void setBounds(Index start, Index end) { m_start = convert_index(start); m_end = convert_index(end); } 47 Scalar& coeffRef(Index i); 48 Scalar& coeff(Index i); 54 void resize(Index size) 64 StorageIndex convert_index(Index idx) 69 void reallocate(Index size) 76 Index allocSize = (size * sizeof(ListEl) + sizeof(Scalar) - 1)/sizeof(Scalar) 107 StorageIndex index; member in struct:Eigen::internal::AmbiVector::ListEl [all...] |
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/ |
misc.c | 376 UINTN Index; 390 for (Index = 0; Index < ((VarSize/sizeof(UINT16)) - 1); Index++) { 391 NewBootOptionArray[Index] = BootOptionArray[Index]; 396 NewBootOptionArray[Index] = BootOption; 515 UINTN Index; 517 for(Index=0;Index<ST->NumberOfTableEntries;Index++) [all...] |
/device/linaro/bootloader/edk2/UefiCpuPkg/CpuS3DataDxe/ |
CpuS3Data.c | 139 UINTN Index;
229 for (Index = 0; Index < NumberOfCpus; Index++) {
232 Index,
237 RegisterTable[Index].InitialApicId = (UINT32)ProcessorInfoBuffer.ProcessorId;
238 RegisterTable[Index].TableLength = 0;
239 RegisterTable[Index].AllocatedSize = 0;
240 RegisterTable[Index].RegisterTableEntry = NULL;
242 RegisterTable[NumberOfCpus + Index].InitialApicId = (UINT32)ProcessorInfoBuffer.ProcessorId; [all...] |
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformSmm/ |
S3Save.c | 96 UINTN Index;
272 for (Index = 0; Index < 2; Index++) {
276 PciAddress.Register = ExtReg[Index];
302 Index = 0;
303 while (RegTable[Index] != 0xFF) {
305 PciAddress.Bus = RegTable[Index++];
306 PciAddress.Device = RegTable[Index++];
307 PciAddress.Function = RegTable[Index++]; [all...] |
/external/eigen/Eigen/src/Eigenvalues/ |
RealQZ.h | 70 typedef Eigen::Index Index; ///< \deprecated since Eigen 3.3 86 explicit RealQZ(Index size = RowsAtCompileTime==Dynamic ? 1 : RowsAtCompileTime) : 174 Index iterations() const 183 RealQZ& setMaxIterations(Index maxIters) 194 Index m_maxIters; 198 Index m_global_iter; 207 Index findSmallSubdiagEntry(Index iu); 208 Index findSmallDiagEntry(Index f, Index l) [all...] |