HomeSort by relevance Sort by last modified time
    Searched full:plength (Results 1 - 25 of 100) sorted by null

1 2 3 4

  /external/icu/icu4c/source/i18n/
udatpg.cpp 122 UChar *conflictingPattern, int32_t capacity, int32_t *pLength,
136 if(pLength!=NULL) {
137 *pLength=length;
153 int32_t *pLength) {
155 if(pLength!=NULL) {
156 *pLength=result.length();
172 int32_t *pLength) {
174 if(pLength!=NULL) {
175 *pLength=result.length();
189 int32_t *pLength) {
    [all...]
  /frameworks/compile/mclinker/lib/Support/
Demangle.cpp 43 bool isCtorOrDtor(const char* pName, size_t pLength) {
55 demangle(pName, pName + pLength, db, internal_status);
62 demangle(pName, pName + pLength, db, internal_status);
FileOutputBuffer.cpp 49 MemoryRegion FileOutputBuffer::request(size_t pOffset, size_t pLength) {
50 if (pOffset > getBufferSize() || (pOffset + pLength) > getBufferSize())
52 return MemoryRegion(getBufferStart() + pOffset, pLength);
FileHandle.cpp 159 bool FileHandle::read(void* pMemBuffer, size_t pStartOffset, size_t pLength) {
165 if (pLength == 0)
169 sys::fs::detail::pread(m_Handler, pMemBuffer, pLength, pStartOffset);
181 size_t pLength) {
187 if (pLength == 0)
191 sys::fs::detail::pwrite(m_Handler, pMemBuffer, pLength, pStartOffset);
MemoryArea.cpp 41 llvm::StringRef MemoryArea::request(size_t pOffset, size_t pLength) {
42 return llvm::StringRef(m_pMemoryBuffer->getBufferStart() + pOffset, pLength);
  /frameworks/compile/mclinker/include/mcld/Support/
FileHandle.h 85 bool read(void* pMemBuffer, size_t pStartOffset, size_t pLength);
87 bool write(const void* pMemBuffer, size_t pStartOffset, size_t pLength);
89 bool mmap(void*& pMemBuffer, size_t pStartOffset, size_t pLength);
91 bool munmap(void* pMemBuffer, size_t pLength);
Demangle.h 18 bool isCtorOrDtor(const char* pName, size_t pLength);
MemoryArea.h 38 llvm::StringRef request(size_t pOffset, size_t pLength);
FileOutputBuffer.h 48 MemoryRegion request(size_t pOffset, size_t pLength);
  /frameworks/compile/libbcc/include/bcc/Support/
File.h 62 inline android::FileMap *createMap(off_t pOffset, size_t pLength,
65 return FileBase::createMap(pOffset, pLength, pIsReadOnly);
  /frameworks/compile/mclinker/lib/Support/Windows/
FileSystem.inc 133 int ftruncate(int pFD, size_t pLength) {
134 return ::_chsize(pFD, pLength);
150 bool FileHandle::mmap(void*& pMemBuffer, size_t pStartOffset, size_t pLength) {
152 pMemBuffer = (void*)::malloc(pLength);
153 return read(pMemBuffer, pStartOffset, pLength);
156 bool FileHandle::munmap(void* pMemBuffer, size_t pLength) {
  /frameworks/compile/mclinker/lib/Support/Unix/
FileSystem.inc 136 int ftruncate(int pFD, size_t pLength) {
137 return ::ftruncate(pFD, pLength);
153 bool FileHandle::mmap(void*& pMemBuffer, size_t pStartOffset, size_t pLength) {
159 if (0 == pLength)
181 pMemBuffer = ::mmap(NULL, pLength, prot, flag, m_Handler, pStartOffset);
191 bool FileHandle::munmap(void* pMemBuffer, size_t pLength) {
197 if (-1 == ::munmap(pMemBuffer, pLength)) {
  /external/conscrypt/src/main/java/org/conscrypt/
ChainStrengthAnalyzer.java 67 int pLength = ((DSAPublicKey) pubkey).getParams().getP().bitLength();
69 if ((pLength < MIN_DSA_P_LEN_BITS) || (qLength < MIN_DSA_Q_LEN_BITS)) {
  /external/icu/icu4c/source/common/
locresdata.cpp 46 int32_t *pLength,
81 item = ures_getStringByKeyWithFallback(&subTable, itemKey, pLength, &errorCode);
91 item = ures_getStringByKeyWithFallback(&table, itemKey, pLength, &errorCode);
104 item = ures_getStringByKeyWithFallback(&table, replacement, pLength, &errorCode);
ulocimp.h 35 int32_t *pLength,
uresdata.c 298 res_getString(const ResourceData *pResData, Resource res, int32_t *pLength) {
326 if(pLength) {
327 *pLength=length;
333 res_getAlias(const ResourceData *pResData, Resource res, int32_t *pLength) {
345 if(pLength) {
346 *pLength=length;
352 res_getBinary(const ResourceData *pResData, Resource res, int32_t *pLength) {
364 if(pLength) {
365 *pLength=length;
372 res_getIntVector(const ResourceData *pResData, Resource res, int32_t *pLength) {
    [all...]
ucmndata.h 85 int32_t *pLength,
ucmndata.c 220 int32_t *pLength,
242 *pLength = (int32_t)(entry[1].dataOffset - entry->dataOffset);
244 *pLength = -1;
271 int32_t *pLength,
289 *pLength=-1;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
bits1_5.h 99 virtual HRESULT WINAPI GetReplyData(byte **ppBuffer,UINT64 *pLength) = 0;
146 HRESULT (WINAPI *GetReplyData)(IBackgroundCopyJob2 *This,byte **ppBuffer,UINT64 *pLength);
195 #define IBackgroundCopyJob2_GetReplyData(This,ppBuffer,pLength) (This)->lpVtbl->GetReplyData(This,ppBuffer,pLength)
208 HRESULT WINAPI IBackgroundCopyJob2_GetReplyData_Proxy(IBackgroundCopyJob2 *This,byte **ppBuffer,UINT64 *pLength);
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)
  /external/icu/icu4c/source/i18n/unicode/
udatpg.h 324 * @param pLength a pointer to the length of conflictingPattern.
335 UChar *conflictingPattern, int32_t capacity, int32_t *pLength,
369 * @param pLength A pointer that will receive the length of appendItemFormat.
376 int32_t *pLength);
402 * @param pLength A pointer that will receive the length of the name for field.
409 int32_t *pLength);
441 * @param pLength A pointer that will receive the length of the format
447 int32_t *pLength);
470 * @param pLength A pointer that will receive the length of the decimal string.
476 int32_t *pLength);
    [all...]
  /external/boringssl/src/crypto/asn1/
asn1_lib.c 135 int ASN1_get_object(const unsigned char **pp, long *plength, int *ptag,
173 if (!asn1_get_length(&p,&inf,plength,(int)max)) goto err;
179 fprintf(stderr,"p=%d + *plength=%ld > omax=%ld + *pp=%d (%d > %d)\n",
180 (int)p,*plength,omax,(int)*pp,(int)(p+ *plength),
184 if (*plength > (omax - (p - *pp)))
  /frameworks/compile/libbcc/lib/Support/
Disassembler.cpp 49 BufferMemoryObject(const uint8_t *pBytes, uint64_t pLength)
50 : mBytes(pBytes), mLength(pLength) {
FileBase.cpp 225 android::FileMap *FileBase::createMap(off_t pOffset, size_t pLength,
237 if (!map->create(nullptr, mFD, pOffset, pLength, pIsReadOnly)) {
  /external/icu/icu4c/source/test/cintltst/
udatpg_test.c 245 int32_t length, pLength;
312 p = udatpg_getPatternForSkeleton(dtpg, s, length, &pLength);
313 if (U_FAILURE(errorCode) || p==NULL || u_memcmp(p, ptrResult[count], pLength)!=0 ) {
325 p = udatpg_getPatternForSkeleton(dtpg, s, length, &pLength);
326 if (U_FAILURE(errorCode) || p==NULL || u_memcmp(p, resultBaseSkeletons[count], pLength)!=0 ) {

Completed in 1189 milliseconds

1 2 3 4