HomeSort by relevance Sort by last modified time
    Searched full:srclen (Results 76 - 100 of 149) sorted by null

1 2 34 5 6

  /external/lzma/C/
Xz.h 156 SRes (*Code)(void *p, Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen,
179 const Byte *src, SizeT *srcLen, int srcWasFinished,
245 const Byte *src, SizeT *srcLen, /* int srcWasFinished, */ int finishMode,
  /external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
SDL_BWin.h 235 int32 state, srclen, dstlen; local
241 srclen = SDL_strlen(buf);
243 convert_from_utf8(B_UNICODE_CONVERSION, buf, &srclen, (char *)destbuf, &dstlen, &state);
  /external/chromium_org/third_party/icu/source/test/intltest/
testidna.cpp 807 int32_t srcLen = u_strlen(src); //subtract null
809 testCompare(src,srcLen,src,srcLen,testName, func, TRUE);
812 testCompare(src,srcLen,buf,u_strlen(buf),testName, func,TRUE);
816 testCompare(src,srcLen,uni1.getBuffer(),uni1.length()-1,testName, func,FALSE);
818 testCompare(src,srcLen,uni0.getBuffer(),uni0.length()-1,testName, func,FALSE);
822 testCompare(src,srcLen,ascii1.getBuffer(),ascii1.length()-1,testName, func,FALSE);
824 testCompare(src,srcLen,ascii0.getBuffer(),ascii0.length()-1,testName, func,FALSE);
    [all...]
testidna.h 100 void testCompareReferenceImpl(const UChar* src, int32_t srcLen);
  /external/icu4c/test/intltest/
testidna.cpp 807 int32_t srcLen = u_strlen(src); //subtract null
809 testCompare(src,srcLen,src,srcLen,testName, func, TRUE);
812 testCompare(src,srcLen,buf,u_strlen(buf),testName, func,TRUE);
816 testCompare(src,srcLen,uni1.getBuffer(),uni1.length()-1,testName, func,FALSE);
818 testCompare(src,srcLen,uni0.getBuffer(),uni0.length()-1,testName, func,FALSE);
822 testCompare(src,srcLen,ascii1.getBuffer(),ascii1.length()-1,testName, func,FALSE);
824 testCompare(src,srcLen,ascii0.getBuffer(),ascii0.length()-1,testName, func,FALSE);
    [all...]
testidna.h 100 void testCompareReferenceImpl(const UChar* src, int32_t srcLen);
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/
cldutil.cc 425 const char* isrc, int srclen, int advance_by,
428 if (FLAGS_dbgscore) {DbgScoreInit(src, srclen);}
431 if (src[0] == ' ') {++src; --srclen;}
434 int usrclen = srclen;
504 const char* isrc, int srclen, Tote* chunk_tote) {
510 const uint8* usrclimit1 = usrc + srclen - UTFmax;
562 const char* isrc, int srclen, int advance_by,
565 const char* srclimit = src + srclen;
567 const char* srclimit7 = src + srclen - (UTFmax * 7);
568 const char* srclimit15 = src + srclen - (UTFmax * 15)
872 int srclen = len; local
    [all...]
cldutil_dbg.h 36 void DbgScoreTop(const char* src, int srclen, Tote* chunk_tote);
cldutil_dbg_empty.cc 37 void DbgScoreTop(const char* src, int srclen, Tote* chunk_tote) {};
  /external/chromium_org/third_party/icu/source/tools/genrb/
wrtjava.c 229 str_write_java( uint16_t* src, int32_t srcLen, UBool printEndLine, UErrorCode *status){
231 uint32_t length = srcLen*8;
241 columnCount = getColumnCount(srcLen);
244 bufLen = uCharsToChars(buf,length,src,srcLen,status);
453 int32_t srcLen=res->u.fBinaryValue.fLength;
455 if(srcLen>0 )
464 for (;byteIterator<srcLen;byteIterator++)
wrtxml.cpp 162 static void strnrepchr(char* src, int32_t srcLen, char s, char r){
164 for(i=0;i<srcLen;i++){
222 const UChar* src, int32_t srcLen, UErrorCode* status){
229 if(status==NULL || U_FAILURE(*status) || pDest==NULL || srcLen==0 || src == NULL){
234 destCap = srcLen * 8;
244 while(srcIndex<srcLen){
245 U16_NEXT(src, srcIndex, srcLen, c);
385 print(UChar* src, int32_t srcLen,const char *tagStart,const char *tagEnd, UErrorCode *status){
386 int32_t bufCapacity = srcLen*4;
399 buf = convertAndEscape(&buf, bufCapacity, &bufLen, src, srcLen,status)
    [all...]
  /external/icu4c/tools/genrb/
wrtjava.c 228 str_write_java( uint16_t* src, int32_t srcLen, UBool printEndLine, UErrorCode *status){
230 uint32_t length = srcLen*8;
240 columnCount = getColumnCount(srcLen);
243 bufLen = uCharsToChars(buf,length,src,srcLen,status);
448 int32_t srcLen=res->u.fBinaryValue.fLength;
450 if(srcLen>0 )
459 for (;byteIterator<srcLen;byteIterator++)
wrtxml.cpp 164 static void strnrepchr(char* src, int32_t srcLen, char s, char r){
166 for(i=0;i<srcLen;i++){
224 const UChar* src, int32_t srcLen, UErrorCode* status){
231 if(status==NULL || U_FAILURE(*status) || pDest==NULL || srcLen==0 || src == NULL){
236 destCap = srcLen * 8;
246 while(srcIndex<srcLen){
247 U16_NEXT(src, srcIndex, srcLen, c);
387 print(UChar* src, int32_t srcLen,const char *tagStart,const char *tagEnd, UErrorCode *status){
388 int32_t bufCapacity = srcLen*4;
401 buf = convertAndEscape(&buf, bufCapacity, &bufLen, src, srcLen,status)
    [all...]
  /external/lzma/C/Util/7z/
7zMain.c 37 static Bool Utf16_To_Utf8(Byte *dest, size_t *destLen, const UInt16 *src, size_t srcLen)
44 if (srcPos == srcLen)
60 if (value >= 0xDC00 || srcPos == srcLen)
86 static SRes Utf16_To_Utf8Buf(CBuf *dest, const UInt16 *src, size_t srcLen)
90 Utf16_To_Utf8(NULL, &destLen, src, srcLen);
94 res = Utf16_To_Utf8(dest->data, &destLen, src, srcLen);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
cramfs_fs.h 89 int cramfs_uncompress_block(void *dst, int dstlen, void *src, int srclen);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
cramfs_fs.h 89 int cramfs_uncompress_block(void *dst, int dstlen, void *src, int srclen);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
cramfs_fs.h 89 int cramfs_uncompress_block(void *dst, int dstlen, void *src, int srclen);
  /external/bison/lib/
wchar.in.h 310 (wchar_t *dest, const char **srcp, size_t srclen, size_t len,
314 (wchar_t *dest, const char **srcp, size_t srclen, size_t len,
319 (wchar_t *dest, const char **srcp, size_t srclen, size_t len,
324 (wchar_t *dest, const char **srcp, size_t srclen, size_t len,
403 (char *dest, const wchar_t **srcp, size_t srclen, size_t len,
407 (char *dest, const wchar_t **srcp, size_t srclen, size_t len,
412 (char *dest, const wchar_t **srcp, size_t srclen, size_t len,
417 (char *dest, const wchar_t **srcp, size_t srclen, size_t len,
    [all...]
  /external/zlib/src/old/
visual-basic.txt 87 dest As Any, ByRef destLen As Any, ByRef src As Any, ByVal srcLen As Long,
90 dest As Any, ByRef destLen As Any, ByRef src As Any, ByVal srcLen As Long)
  /external/chromium_org/third_party/icu/source/test/cintltst/
idnatest.c 604 int32_t srcLen;
620 srcLen = u_strlen(src);
622 testCompareWithSrc(src,srcLen,src,srcLen,testName, func, TRUE);
625 testCompareWithSrc(src,srcLen,buf,u_strlen(buf),testName, func,TRUE);
629 testCompareWithSrc(src,srcLen,uni1,u_strlen(uni1),testName, func,FALSE);
631 testCompareWithSrc(src,srcLen,uni0,u_strlen(uni0),testName, func,FALSE);
635 testCompareWithSrc(src,srcLen,ascii1,u_strlen(ascii1),testName, func,FALSE);
637 testCompareWithSrc(src,srcLen,ascii0,u_strlen(ascii0),testName, func,FALSE);
685 int32_t srcLen = u_strlen(src)
    [all...]
  /external/icu4c/test/cintltst/
idnatest.c 604 int32_t srcLen;
620 srcLen = u_strlen(src);
622 testCompareWithSrc(src,srcLen,src,srcLen,testName, func, TRUE);
625 testCompareWithSrc(src,srcLen,buf,u_strlen(buf),testName, func,TRUE);
629 testCompareWithSrc(src,srcLen,uni1,u_strlen(uni1),testName, func,FALSE);
631 testCompareWithSrc(src,srcLen,uni0,u_strlen(uni0),testName, func,FALSE);
635 testCompareWithSrc(src,srcLen,ascii1,u_strlen(ascii1),testName, func,FALSE);
637 testCompareWithSrc(src,srcLen,ascii0,u_strlen(ascii0),testName, func,FALSE);
685 int32_t srcLen = u_strlen(src)
    [all...]
  /system/core/run-as/
package.c 47 /* Copy 'srclen' string bytes from 'src' into buffer 'dst' of size 'dstlen'
51 * has stopped. The copy will stop when dstlen, srclen or a null
55 string_copy(char* dst, size_t dstlen, const char* src, size_t srclen)
57 const char* srcend = src + srclen;
  /build/libs/host/
CopyFile.c 484 int srcLen, dstLen, nameLen;
497 srcLen = strlen(src);
500 srcFile = malloc(srcLen +1 + nameLen +1);
501 memcpy(srcFile, src, srcLen);
502 srcFile[srcLen] = FSSEP;
503 memcpy(srcFile + srcLen+1, ent->d_name, nameLen +1);
  /external/lzma/
lzma.txt 361 int LzmaDecode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen,
368 srcLen - input data size
380 srcLen - processed input size
399 3) Check that output(srcLen) = compressedSize, if you know real compressedSize.
434 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode);
540 HRes LzmaEncode(Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen,
  /external/chromium_org/third_party/skia/src/pdf/
SkPDFFont.cpp 164 size_t srcLen;
165 if ((srcLen = srcStream->getLength()) > 0) {
166 staticStream.reset(new SkMemoryStream(srcLen + 1));
169 memcpy((void *)src, srcStream->getMemoryBase(), srcLen);
172 while (read < srcLen) {
174 srcLen - read);
182 ((uint8_t *)src)[srcLen] = 0;
194 srcLen = data->size() - 1;
201 if (parsePFB(src, srcLen, headerLen, dataLen, trailerLen)) {
216 if (parsePFA((const char*)src, srcLen, headerLen, &hexDataLen, dataLen
    [all...]

Completed in 1915 milliseconds

1 2 34 5 6