HomeSort by relevance Sort by last modified time
    Searched full:plength (Results 26 - 50 of 108) sorted by null

12 3 4 5

  /external/icu/icu4c/source/common/
uresdata.cpp 308 res_getString(const ResourceData *pResData, Resource res, int32_t *pLength) {
340 if(pLength) {
341 *pLength=length;
386 res_getAlias(const ResourceData *pResData, Resource res, int32_t *pLength) {
398 if(pLength) {
399 *pLength=length;
405 res_getBinary(const ResourceData *pResData, Resource res, int32_t *pLength) {
417 if(pLength) {
418 *pLength=length;
425 res_getIntVector(const ResourceData *pResData, Resource res, int32_t *pLength) {
    [all...]
uresdata.h 426 * and set its length in *pLength.
430 res_getString(const ResourceData *pResData, Resource res, int32_t *pLength);
433 res_getAlias(const ResourceData *pResData, Resource res, int32_t *pLength);
436 res_getBinary(const ResourceData *pResData, Resource res, int32_t *pLength);
439 res_getIntVector(const ResourceData *pResData, Resource res, int32_t *pLength);
uresbund.cpp     [all...]
utrie.cpp 164 utrie_getData(UNewTrie *trie, int32_t *pLength) {
165 if(trie==NULL || pLength==NULL) {
169 *pLength=trie->dataLength;
    [all...]
ubidiln.c 362 int32_t *pLogicalStart, int32_t *pLength)
377 if(pLength!=NULL) {
379 *pLength=pBiDi->runs[runIndex].visualLimit-
382 *pLength=pBiDi->runs[0].visualLimit;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
bits2_0.h 128 HRESULT (WINAPI *GetReplyData)(IBackgroundCopyJob3 *This,byte **ppBuffer,UINT64 *pLength);
181 #define IBackgroundCopyJob3_GetReplyData(This,ppBuffer,pLength) (This)->lpVtbl -> GetReplyData(This,ppBuffer,pLength)
tom.h 324 virtual HRESULT WINAPI FindText(BSTR bstr,__LONG32 cch,__LONG32 Flags,__LONG32 *pLength) = 0;
325 virtual HRESULT WINAPI FindTextStart(BSTR bstr,__LONG32 cch,__LONG32 Flags,__LONG32 *pLength) = 0;
326 virtual HRESULT WINAPI FindTextEnd(BSTR bstr,__LONG32 cch,__LONG32 Flags,__LONG32 *pLength) = 0;
386 HRESULT (WINAPI *FindText)(ITextRange *This,BSTR bstr,__LONG32 cch,__LONG32 Flags,__LONG32 *pLength);
387 HRESULT (WINAPI *FindTextStart)(ITextRange *This,BSTR bstr,__LONG32 cch,__LONG32 Flags,__LONG32 *pLength);
388 HRESULT (WINAPI *FindTextEnd)(ITextRange *This,BSTR bstr,__LONG32 cch,__LONG32 Flags,__LONG32 *pLength);
450 #define ITextRange_FindText(This,bstr,cch,Flags,pLength) (This)->lpVtbl->FindText(This,bstr,cch,Flags,pLength)
451 #define ITextRange_FindTextStart(This,bstr,cch,Flags,pLength) (This)->lpVtbl->FindTextStart(This,bstr,cch,Flags,pLength)
    [all...]
sqlucode.h 44 SQLRETURN SQL_API SQLGetDescRecW(SQLHDESC hdesc,SQLSMALLINT iRecord,SQLWCHAR *szName,SQLSMALLINT cbNameMax,SQLSMALLINT *pcbName,SQLSMALLINT *pfType,SQLSMALLINT *pfSubType,SQLLEN *pLength,SQLSMALLINT *pPrecision,SQLSMALLINT *pScale,SQLSMALLINT *pNullable);
86 SQLRETURN SQL_API SQLGetDescRecA(SQLHDESC hdesc,SQLSMALLINT iRecord,SQLCHAR *szName,SQLSMALLINT cbNameMax,SQLSMALLINT *pcbName,SQLSMALLINT *pfType,SQLSMALLINT *pfSubType,SQLINTEGER *pLength,SQLSMALLINT *pPrecision,SQLSMALLINT *pScale,SQLSMALLINT *pNullable);
textserv.h 115 virtual HRESULT TxGetMaxLength(DWORD *plength) = 0;
  /external/sonivox/arm-wt-22k/host_src/
eas_host.h 71 extern EAS_RESULT EAS_HWFileLength (EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE file, EAS_I32 *pLength);
  /frameworks/compile/mclinker/include/mcld/Support/
FileSystem.h 98 int ftruncate(int pFD, size_t pLength);
  /bootable/recovery/minzip/
Bits.h 251 INLINE char* readNewUtf8String(unsigned char const** ppSrc, size_t* pLength)
263 *pLength = length;
  /frameworks/compile/mclinker/lib/Script/
ScriptFile.cpp 235 size_t pLength) {
238 g_ParserStrPool->insert(std::string(pText, pLength), exist);
  /frameworks/compile/mclinker/include/mcld/
IRBuilder.h 279 /// @param pLength [in] The number of bytes of the data
280 /// @return If pLength is zero or failing to request a region, return a
282 static Fragment* CreateRegion(Input& pInput, size_t pOffset, size_t pLength);
290 /// @param pLength [in] The number of bytes of the data
291 /// @return If pLength is zero or failing to request a region, return a
293 static Fragment* CreateRegion(void* pMemory, size_t pLength);
  /frameworks/compile/mclinker/lib/Core/
IRBuilder.cpp 338 size_t pLength) {
344 if (0 == pLength)
347 llvm::StringRef region = pInput.memArea()->request(pOffset, pLength);
352 Fragment* IRBuilder::CreateRegion(void* pMemory, size_t pLength) {
353 if (0 == pLength)
356 llvm::StringRef region(reinterpret_cast<const char*>(pMemory), pLength);
  /frameworks/compile/libbcc/include/bcc/Support/
FileBase.h 127 android::FileMap *createMap(off_t pOffset, size_t pLength, bool pIsReadOnly);
  /frameworks/compile/mclinker/include/mcld/Script/
ScriptFile.h 150 static const std::string& createParserStr(const char* pText, size_t pLength);
  /external/icu/icu4c/source/test/cintltst/
ucnvseltst.c 198 text_nextString(TestText *tt, int32_t *pLength) {
218 *pLength = (int32_t)(tt->limit - s);
  /external/opencv3/modules/imgproc/src/
connectedcomponents.cpp 200 const size_t Plength = 4 * (size_t(rows + 3 - 1)/3) * (size_t(cols + 3 - 1)/3);
201 LabelT *P = (LabelT *) fastMalloc(sizeof(LabelT) * Plength);
  /external/icu/icu4c/source/common/unicode/
ures.h 662 * @param pLength Input: Capacity of destination buffer.
690 char *dest, int32_t *pLength,
755 * @param pLength Input: Capacity of destination buffer.
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
video.h 81 pLength, \
91 *pLength = scatterList->Length - byteOffset; \
    [all...]
  /external/aac/libMpegTPDec/src/
tpdec_adts.h 225 * \param pLength pointer to an INT where the length of the given raw data block is stored into
  /external/icu/icu4c/source/tools/genrb/
reslist.h 79 const char *getKeyBytes(int32_t *pLength) const;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
PerformancesView.java 169 int pLength = pages.length;
170 for (int j=0; j<pLength; j++) {
  /external/sonivox/arm-wt-22k/lib_src/
eas_xmf.c 68 static EAS_RESULT XMF_ReadNode (EAS_HW_DATA_HANDLE hwInstData, S_XMF_DATA *pXMFData, EAS_I32 nodeOffset, EAS_I32 *pLength);
553 static EAS_RESULT XMF_ReadNode (EAS_HW_DATA_HANDLE hwInstData, S_XMF_DATA *pXMFData, EAS_I32 nodeOffset, EAS_I32 *pLength)
568 if ((result = XMF_ReadVLQ(hwInstData, pXMFData->fileHandle, pLength)) != EAS_SUCCESS)

Completed in 2182 milliseconds

12 3 4 5