Home | History | Annotate | Download | only in genrb

Lines Matching refs:fIntVector

461         if (res->u.fIntVector.fCount == 0 && gFormatVersion > 1) {
466 *byteOffset += (1 + res->u.fIntVector.fCount) * 4;
537 udata_write32(mem, res->u.fIntVector.fCount);
538 for(i = 0; i<res->u.fIntVector.fCount; i++) {
539 udata_write32(mem, res->u.fIntVector.fArray[i]);
541 *byteOffset += (1 + res->u.fIntVector.fCount) * 4;
1001 res->u.fIntVector.fCount = 0;
1002 res->u.fIntVector.fArray = (uint32_t *) uprv_malloc(sizeof(uint32_t) * RESLIST_MAX_INT_VECTOR);
1003 if (res->u.fIntVector.fArray == NULL) {
1159 if (intvector->u.fIntVector.fArray != NULL) {
1160 uprv_free(intvector->u.fIntVector.fArray);
1161 intvector->u.fIntVector.fArray =NULL;
1320 *(intvector->u.fIntVector.fArray + intvector->u.fIntVector.fCount) = value;
1321 intvector->u.fIntVector.fCount++;