Home | History | Annotate | Download | only in ucnv

Lines Matching refs: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
862 #define BUFFERSIZE 17 /* make it interesting :) */
872 char inBuf[BUFFERSIZE];
902 uBufSize = (BUFFERSIZE/ucnv_getMinCharSize(conv));
904 BUFFERSIZE, ucnv_getMinCharSize(conv), uBufSize);
910 ((count=fread(inBuf, 1, BUFFERSIZE , f)) > 0) )
961 #undef BUFFERSIZE
967 #define BUFFERSIZE 24 /* make it interesting :) */
977 UChar inBuf[BUFFERSIZE];
1008 bufSize = (BUFFERSIZE*ucnv_getMaxCharSize(conv));
1010 BUFFERSIZE, ucnv_getMaxCharSize(conv), bufSize);
1016 ((count=fread(inBuf, sizeof(UChar), BUFFERSIZE , f)) > 0) )
1066 #undef BUFFERSIZE
1068 #define BUFFERSIZE 219