HomeSort by relevance Sort by last modified time
    Searched defs:BUFFERSIZE (Results 1 - 4 of 4) sorted by null

  /external/icu/icu4c/source/samples/ucnv/
convsamp.cpp 30 * Each test can define it's own BUFFERSIZE
264 #define BUFFERSIZE 17 /* make it interesting :) */
270 The 'buffersize' is in bytes of input.
299 char inBuf[BUFFERSIZE];
322 uBufSize = (BUFFERSIZE/ucnv_getMinCharSize(conv));
324 BUFFERSIZE, ucnv_getMinCharSize(conv), uBufSize);
330 ((count=fread(inBuf, 1, BUFFERSIZE , f)) > 0) )
383 #undef BUFFERSIZE
385 #define BUFFERSIZE 1024
399 char inBuf[BUFFERSIZE];
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_hotshot.c 52 #define BUFFERSIZE 10240
79 unsigned char buffer[BUFFERSIZE];
626 if (len + PISIZE + self->index >= BUFFERSIZE) {
644 if (len1 + len2 + PISIZE*2 + 1 + self->index >= BUFFERSIZE) {
660 if (len + PISIZE*2 + 1 + self->index >= BUFFERSIZE) {
677 if (len + PISIZE*3 + 1 + self->index >= BUFFERSIZE) {
693 if (2 + self->index >= BUFFERSIZE) {
706 if (2 + self->index >= BUFFERSIZE) {
719 if (MPISIZE + PISIZE*2 + self->index >= BUFFERSIZE) {
734 if (MPISIZE + self->index >= BUFFERSIZE) {
    [all...]
  /external/python/cpython2/Modules/
_hotshot.c 52 #define BUFFERSIZE 10240
79 unsigned char buffer[BUFFERSIZE];
626 if (len + PISIZE + self->index >= BUFFERSIZE) {
629 if (len + PISIZE + self->index >= BUFFERSIZE) {
648 if (len1 + len2 + PISIZE*2 + 1 + self->index >= BUFFERSIZE) {
664 if (len + PISIZE*2 + 1 + self->index >= BUFFERSIZE) {
681 if (len + PISIZE*3 + 1 + self->index >= BUFFERSIZE) {
697 if (2 + self->index >= BUFFERSIZE) {
710 if (2 + self->index >= BUFFERSIZE) {
723 if (MPISIZE + PISIZE*2 + self->index >= BUFFERSIZE) {
    [all...]
  /external/skia/src/ports/
SkFontHost_win.cpp 533 #define BUFFERSIZE (1 << 13)
557 SkAutoSTMalloc<BUFFERSIZE, uint8_t>* glyphbuf);
914 DWORD bufferSize = GetGlyphOutlineW(fDDC, glyphId, GGO_NATIVE | GGO_GLYPH_INDEX, &gm, 0, nullptr, &fMat22);
915 empty = (0 == bufferSize);
    [all...]

Completed in 328 milliseconds