OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cesize
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/icu/source/i18n/
coleitr.cpp
443
int32_t
CEsize
;
446
CEsize
= sizeof(othercoliter->extendCEs);
447
if (
CEsize
> 0) {
448
othercoliter->extendCEs = (uint32_t *)uprv_malloc(
CEsize
);
449
uprv_memcpy(coliter->extendCEs, othercoliter->extendCEs,
CEsize
);
453
coliter->CEpos = coliter->extendCEs +
CEsize
;
455
CEsize
= (int32_t)(othercoliter->CEpos - othercoliter->CEs);
456
if (
CEsize
> 0) {
457
uprv_memcpy(coliter->CEs, othercoliter->CEs,
CEsize
);
461
coliter->CEpos = coliter->CEs +
CEsize
;
[
all
...]
usearch.cpp
486
* @param
cesize
size of the pattern ces
493
int32_t *cetable, int32_t
cesize
,
506
cesize
--; // down to the last index
507
for (count = 0; count <
cesize
; count ++) {
512
shift[hash(cetable[
cesize
])] = 1;
519
for (count =
cesize
; count > 0; count --) {
562
int32_t
cesize
= pattern->CELength;
local
564
int16_t minlength =
cesize
> expandlength
565
? (int16_t)
cesize
- expandlength : 1;
568
cesize
, expandlength, minlength, minlength)
[
all
...]
/external/icu4c/i18n/
coleitr.cpp
445
int32_t
CEsize
;
448
CEsize
= sizeof(othercoliter->extendCEs);
449
if (
CEsize
> 0) {
450
othercoliter->extendCEs = (uint32_t *)uprv_malloc(
CEsize
);
451
uprv_memcpy(coliter->extendCEs, othercoliter->extendCEs,
CEsize
);
455
coliter->CEpos = coliter->extendCEs +
CEsize
;
457
CEsize
= (int32_t)(othercoliter->CEpos - othercoliter->CEs);
458
if (
CEsize
> 0) {
459
uprv_memcpy(coliter->CEs, othercoliter->CEs,
CEsize
);
463
coliter->CEpos = coliter->CEs +
CEsize
;
[
all
...]
usearch.cpp
486
* @param
cesize
size of the pattern ces
493
int32_t *cetable, int32_t
cesize
,
506
cesize
--; // down to the last index
507
for (count = 0; count <
cesize
; count ++) {
512
shift[hash(cetable[
cesize
])] = 1;
519
for (count =
cesize
; count > 0; count --) {
562
int32_t
cesize
= pattern->CELength;
local
564
int16_t minlength =
cesize
> expandlength
565
? (int16_t)
cesize
- expandlength : 1;
568
cesize
, expandlength, minlength, minlength)
[
all
...]
/libcore/luni/src/main/java/java/util/zip/
ZipInputStream.java
248
long ceCrc = 0, ceCompressedSize = 0,
ceSize
= -1;
252
ceSize
= ((long) Memory.peekInt(hdrBuf, LOCLEN - LOCVER, ByteOrder.LITTLE_ENDIAN)) & 0xffffffffL;
271
if (
ceSize
!= -1) {
273
currentEntry.setSize(
ceSize
);
Completed in 6660 milliseconds