Home | History | Annotate | Download | only in ucnv

Lines Matching full:buffersize

24 *  Each test can define it's own BUFFERSIZE 
257 #define BUFFERSIZE 17 /* make it interesting :) */
263 The 'buffersize' is in bytes of input.
292 char inBuf[BUFFERSIZE];
315 uBufSize = (BUFFERSIZE/ucnv_getMinCharSize(conv));
317 BUFFERSIZE, ucnv_getMinCharSize(conv), uBufSize);
323 ((count=fread(inBuf, 1, BUFFERSIZE , f)) > 0) )
376 #undef BUFFERSIZE
378 #define BUFFERSIZE 1024
392 char inBuf[BUFFERSIZE];
432 uBufSize = (BUFFERSIZE/ucnv_getMinCharSize(conv));
434 BUFFERSIZE, ucnv_getMinCharSize(conv), uBufSize);
438 ((count=fread(inBuf, 1, BUFFERSIZE , f)) > 0) )
507 #undef BUFFERSIZE
863 #define BUFFERSIZE 17 /* make it interesting :) */
873 char inBuf[BUFFERSIZE];
903 uBufSize = (BUFFERSIZE/ucnv_getMinCharSize(conv));
905 BUFFERSIZE, ucnv_getMinCharSize(conv), uBufSize);
911 ((count=fread(inBuf, 1, BUFFERSIZE , f)) > 0) )
962 #undef BUFFERSIZE
968 #define BUFFERSIZE 24 /* make it interesting :) */
978 UChar inBuf[BUFFERSIZE];
1009 bufSize = (BUFFERSIZE*ucnv_getMaxCharSize(conv));
1011 BUFFERSIZE, ucnv_getMaxCharSize(conv), bufSize);
1017 ((count=fread(inBuf, sizeof(UChar), BUFFERSIZE , f)) > 0) )
1067 #undef BUFFERSIZE
1069 #define BUFFERSIZE 219