HomeSort by relevance Sort by last modified time
    Searched refs:InfoOffset (Results 1 - 5 of 5) sorted by null

  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Include/Library/
I2CLib.h 54 I2CWrite(I2C_DEVICE *I2cInfo, UINT16 InfoOffset, UINT32 ulLength, UINT8 *pBuf);
58 I2CRead(I2C_DEVICE *I2cInfo, UINT16 InfoOffset,UINT32 ulRxLen,UINT8 *pBuf);
62 I2CWriteMultiByte(I2C_DEVICE *I2cInfo, UINT32 InfoOffset, UINT32 ulLength, UINT8 *pBuf);
66 I2CReadMultiByte(I2C_DEVICE *I2cInfo, UINT32 InfoOffset,UINT32 ulRxLen,UINT8 *pBuf);
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Library/I2CLib/
I2CLib.c 293 I2CWrite(I2C_DEVICE *I2cInfo, UINT16 InfoOffset, UINT32 ulLength, UINT8 *pBuf)
327 I2C_REG_WRITE(Base + I2C_DATA_CMD_OFFSET, (InfoOffset >> 8) & 0xff);
328 I2C_REG_WRITE(Base + I2C_DATA_CMD_OFFSET, InfoOffset & 0xff);
332 I2C_REG_WRITE(Base + I2C_DATA_CMD_OFFSET, InfoOffset & 0xff);
392 I2CRead(I2C_DEVICE *I2cInfo, UINT16 InfoOffset,UINT32 ulRxLen,UINT8 *pBuf)
411 I2CWAddr[0] = (InfoOffset >> 8) & 0xff;
412 I2CWAddr[1] = (InfoOffset & 0xff);
422 I2CWAddr[0] = (InfoOffset & 0xff);
476 I2CReadMultiByte(I2C_DEVICE *I2cInfo, UINT32 InfoOffset,UINT32 ulRxLen,UINT8 *pBuf)
498 I2CWAddr[0] = (InfoOffset >> 8) & 0xff;
    [all...]
  /art/runtime/mirror/
method_handle_impl.h 132 static MemberOffset InfoOffset() {
  /external/llvm/tools/llvm-dwp/
llvm-dwp.cpp 115 getIndexedString(uint32_t Form, DataExtractor InfoData, uint32_t &InfoOffset,
118 return InfoData.getCStr(&InfoOffset);
122 auto StrIndex = InfoData.getULEB128(&InfoOffset);
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-dwp/
llvm-dwp.cpp 119 uint32_t &InfoOffset, StringRef StrOffsets, StringRef Str) {
121 return InfoData.getCStr(&InfoOffset);
125 auto StrIndex = InfoData.getULEB128(&InfoOffset);

Completed in 156 milliseconds