HomeSort by relevance Sort by last modified time
    Searched refs:fBytes (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/third_party/skia/experimental/PdfViewer/
SkPdfUtils.h 38 size_t fBytes;
42 str->fBytes = 0;
47 str->fBytes = strlen(sz);
51 return strncmp((const char*)fBuffer, sz, fBytes) == 0 && fBytes == strlen(sz);
SkPdfGraphicsState.h 70 fColorSpace.fBytes = 7; // strlen("Pattern")
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/
SkPdfNativeObject.cpp 34 SkMemoryStream skstream(fStr.fBuffer, fStr.fBytes >> 2, false);
38 fStr.fBytes = (uncompressedData.bytesWritten() << 2) + kOwnedStreamBit +
88 fStr.fBytes = ((fStr.fBytes >> 1) << 1) + kFilteredStreamBit;
SkPdfNativeObject.h 196 fStr.fBytes = 0;
241 return fStr.fBytes;
507 obj->fStr.fBytes = 0;
530 return set(key->fStr.fBuffer, key->fStr.fBytes, value);
566 return get(key->fStr.fBuffer, key->fStr.fBytes);
611 return get(key->fStr.fBuffer, key->fStr.fBytes);
732 return fObjectType == kKeyword_PdfObjectType && fStr.fBytes == 1 && fStr.fBuffer[0] == 'R';
750 if (strlen(keyword) != fStr.fBytes) {
754 if (strncmp(keyword, (const char*)fStr.fBuffer, fStr.fBytes) != 0) {
773 fStr.fBytes == strlen(name) &
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
sortkey.h 251 * Set a new length for a new sort key in the existing fBytes.
256 return (fFlagAndLength >= 0) ? fUnion.fStackBuffer : fUnion.fFields.fBytes;
259 return (fFlagAndLength >= 0) ? fUnion.fStackBuffer : fUnion.fFields.fBytes;
308 uint8_t *fBytes;
  /external/icu/icu4c/source/i18n/unicode/
sortkey.h 252 * Set a new length for a new sort key in the existing fBytes.
257 return (fFlagAndLength >= 0) ? fUnion.fStackBuffer : fUnion.fFields.fBytes;
260 return (fFlagAndLength >= 0) ? fUnion.fStackBuffer : fUnion.fFields.fBytes;
309 uint8_t *fBytes;
  /external/chromium_org/third_party/skia/src/pipe/utils/
SamplePipeControllers.h 75 PipeBlock(void* block, size_t bytes) { fBlock = block, fBytes = bytes; }
80 size_t fBytes;
SamplePipeControllers.cpp 112 reader.playback(fBlockList[currentBlock].fBlock, fBlockList[currentBlock].fBytes);
  /external/chromium_org/third_party/skia/src/lazy/
SkDiscardableMemoryPool.cpp 92 const size_t fBytes;
101 , fBytes(bytes) {
104 SkASSERT(fBytes > 0);
164 SkASSERT(fUsed >= dm->fBytes);
165 fUsed -= dm->fBytes;
196 SkASSERT(fUsed >= dm->fBytes);
197 fUsed -= dm->fBytes;
  /external/chromium_org/third_party/icu/source/i18n/
sortkey.cpp 96 if(fFlagAndLength < 0) { uprv_free(fUnion.fFields.fBytes); }
105 if(fFlagAndLength < 0) { uprv_free(fUnion.fFields.fBytes); }
106 fUnion.fFields.fBytes = newBytes;
236 uprv_memcpy(result, fBytes, fCount);
  /external/icu/icu4c/source/i18n/
sortkey.cpp 96 if(fFlagAndLength < 0) { uprv_free(fUnion.fFields.fBytes); }
105 if(fFlagAndLength < 0) { uprv_free(fUnion.fFields.fBytes); }
106 fUnion.fFields.fBytes = newBytes;
236 uprv_memcpy(result, fBytes, fCount);
  /external/chromium_org/third_party/icu/source/tools/genrb/
genrb.c 99 uint8_t *fBytes;
341 poolBundle.fBytes = (uint8_t *)uprv_malloc((poolFileSize + 15) & ~15);
342 if (poolFileSize > 0 && poolBundle.fBytes == NULL) {
348 int32_t bytesRead = T_FileStream_read(poolFile, poolBundle.fBytes, poolFileSize);
359 ds = udata_openSwapperForInputData(poolBundle.fBytes, bytesRead,
366 ures_swap(ds, poolBundle.fBytes, bytesRead, poolBundle.fBytes, &status);
373 header = (const DataHeader *)poolBundle.fBytes;
427 uprv_free(poolBundle.fBytes);
  /external/icu/icu4c/source/tools/genrb/
genrb.c 114 uint8_t *fBytes;
356 poolBundle.fBytes = (uint8_t *)uprv_malloc((poolFileSize + 15) & ~15);
357 if (poolFileSize > 0 && poolBundle.fBytes == NULL) {
363 int32_t bytesRead = T_FileStream_read(poolFile, poolBundle.fBytes, poolFileSize);
374 ds = udata_openSwapperForInputData(poolBundle.fBytes, bytesRead,
381 ures_swap(ds, poolBundle.fBytes, bytesRead, poolBundle.fBytes, &status);
388 header = (const DataHeader *)poolBundle.fBytes;
442 uprv_free(poolBundle.fBytes);
  /external/chromium_org/third_party/skia/experimental/PdfViewer/src/
SkPdfRenderer.cpp 466 if (data.fBytes != (unsigned int)cnt * 3) {
    [all...]

Completed in 320 milliseconds