OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fBytes
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/third_party/icu/source/i18n/
sortkey.cpp
50
fHashCode(kEmptyHashCode),
fBytes
(NULL)
59
fBytes
= (uint8_t *)uprv_malloc(count);
61
if (
fBytes
== NULL)
67
uprv_memcpy(
fBytes
, newValues, fCount);
72
fHashCode(other.fHashCode),
fBytes
(NULL)
80
fBytes
= (uint8_t *)uprv_malloc(fCapacity);
82
if (
fBytes
== NULL)
88
uprv_memcpy(
fBytes
, other.
fBytes
, other.fCount);
90
uprv_memset(
fBytes
+fCount, 0, fCapacity-fCount)
[
all
...]
/external/chromium_org/third_party/skia/src/lazy/
SkDiscardableMemoryPool.cpp
33
const size_t
fBytes
;
42
,
fBytes
(bytes) {
45
SkASSERT(
fBytes
> 0);
105
SkASSERT(fUsed >= dm->
fBytes
);
106
fUsed -= dm->
fBytes
;
137
SkASSERT(fUsed >= dm->
fBytes
);
138
fUsed -= dm->
fBytes
;
/external/skia/src/lazy/
SkDiscardableMemoryPool.cpp
33
const size_t
fBytes
;
42
,
fBytes
(bytes) {
45
SkASSERT(
fBytes
> 0);
105
SkASSERT(fUsed >= dm->
fBytes
);
106
fUsed -= dm->
fBytes
;
137
SkASSERT(fUsed >= dm->
fBytes
);
138
fUsed -= dm->
fBytes
;
/external/icu4c/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/chromium_org/third_party/icu/source/i18n/unicode/
sortkey.h
282
* Size of
fBytes
used to store the sortkey. i.e. up till the
287
* Full size of the
fBytes
297
uint8_t*
fBytes
;
317
return
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/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/icu4c/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
101
uint8_t *
fBytes
;
346
poolBundle.
fBytes
= (uint8_t *)uprv_malloc((poolFileSize + 15) & ~15);
347
if (poolFileSize > 0 && poolBundle.
fBytes
== NULL) {
353
int32_t bytesRead = T_FileStream_read(poolFile, poolBundle.
fBytes
, poolFileSize);
364
ds = udata_openSwapperForInputData(poolBundle.
fBytes
, bytesRead,
371
ures_swap(ds, poolBundle.
fBytes
, bytesRead, poolBundle.
fBytes
, &status);
378
header = (const DataHeader *)poolBundle.
fBytes
;
430
uprv_free(poolBundle.
fBytes
);
/external/icu4c/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
);
Completed in 490 milliseconds