Searched defs:NEW_ARRAY (Results 1 - 20 of 20) sorted by relevance

/external/icu4c/samples/layout/
H A Darraymem.h16 #define NEW_ARRAY(type,count) (type *) malloc((count) * sizeof(type)) macro
/external/icu4c/test/letest/
H A Dletest.h29 #define NEW_ARRAY(type,count) (type *) malloc((count) * sizeof(type)) macro
/external/icu4c/i18n/
H A Dinputext.cpp25 #define NEW_ARRAY(type,count) (type *) uprv_malloc((count) * sizeof(type)) macro
29 : fInputBytes(NEW_ARRAY(uint8_t, BUFFER_SIZE)), // The text to be checked. Markup will have been
31 fByteStats(NEW_ARRAY(int16_t, 256)), // byte frequency statistics for the input text.
66 fDeclaredEncoding = NEW_ARRAY(char, len);
H A Ducsdet.cpp21 #define NEW_ARRAY(type,count) (type *) uprv_malloc((count) * sizeof(type)) macro
H A Dcsdetect.cpp32 #define NEW_ARRAY(type,count) (type *) uprv_malloc((count) * sizeof(type)) macro
133 recognizers = NEW_ARRAY(CharsetRecognizer *, rCount);
405 UEnumeration *en = NEW_ARRAY(UEnumeration, 1);
407 en->context = (void*)NEW_ARRAY(Context, 1);
H A Dwinnmfmt.cpp48 #define NEW_ARRAY(type,count) (type *) uprv_malloc((count) * sizeof(type)) macro
89 fmt->lpDecimalSep = NEW_ARRAY(UChar, 6);
92 fmt->lpThousandSep = NEW_ARRAY(UChar, 6);
116 fmt->lpDecimalSep = NEW_ARRAY(UChar, 6);
119 fmt->lpThousandSep = NEW_ARRAY(UChar, 6);
125 fmt->lpCurrencySymbol = NEW_ARRAY(UChar, 8);
263 nBuffer = NEW_ARRAY(UChar, newLength + 1);
310 buffer = NEW_ARRAY(UChar, newLength);
330 buffer = NEW_ARRAY(UChar, newLength);
H A Ducoleitr.cpp38 #define NEW_ARRAY(type, count) (type *) uprv_malloc((count) * sizeof(type)) macro
92 RCEI *newBuffer = NEW_ARRAY(RCEI, bufferSize + BUFFER_GROW);
170 PCEI *newBuffer = NEW_ARRAY(PCEI, bufferSize + BUFFER_GROW);
H A Dwindtfmt.cpp50 #define NEW_ARRAY(type,count) (type *) uprv_malloc((count) * sizeof(type)) macro
101 fTZI = NEW_ARRAY(TIME_ZONE_INFORMATION, 1);
134 this->fTZI = NEW_ARRAY(TIME_ZONE_INFORMATION, 1);
247 buffer = NEW_ARRAY(UChar, newLength);
273 buffer = NEW_ARRAY(UChar, newLength);
H A Dbmsearch.cpp38 #define NEW_ARRAY(type, count) (type *) uprv_malloc((count) * sizeof(type)) macro
115 ceb = NEW_ARRAY(CEI, bufferSize);
394 int32_t *history = NEW_ARRAY(int32_t, plen);
405 minLengthCache = NEW_ARRAY(int32_t, plen + 1);
485 int32_t *suff = NEW_ARRAY(int32_t, patlen);
520 goodSuffixTable = NEW_ARRAY(int32_t, patlen);
H A Dcolldata.cpp38 #define NEW_ARRAY(type, count) (type *) uprv_malloc((count) * sizeof(type)) macro
138 uint32_t *newCEs = NEW_ARRAY(uint32_t, newMax);
591 keyBuffer = NEW_ARRAY(char, *keyBufferLength);
680 key = NEW_ARRAY(char, cacheKeyLength);
1004 int32_t *history = NEW_ARRAY(int32_t, clength);
/external/srec/portable/include/
H A Dpmemory.h70 #define NEW_ARRAY(type, n, tag) ((type*)CALLOC(n, sizeof(type), tag)) macro
143 #define NEW_ARRAY(type, nbElem, tag) ((type *) CALLOC(nbElem, sizeof(type), tag)) macro
/external/icu4c/test/intltest/
H A Dwinnmtst.cpp48 #define NEW_ARRAY(type,count) (type *) uprv_malloc((count) * sizeof(type)) macro
157 nBuffer = NEW_ARRAY(UChar, newLength + 1);
195 buffer = NEW_ARRAY(UChar, newLength);
209 buffer = NEW_ARRAY(UChar, newLength);
H A Dcsdetest.cpp30 #define NEW_ARRAY(type,count) (type *) /*uprv_*/malloc((count) * sizeof(type)) macro
133 bytes = NEW_ARRAY(char, length + 1);
205 decoded = NEW_ARRAY(UChar, testLength);
280 UChar *detected = NEW_ARRAY(UChar, sLength);
H A Dssearch.cpp59 #define NEW_ARRAY(type, count) (type *) uprv_malloc((count) * sizeof(type)) macro
395 resolvedFileName = NEW_ARRAY(char, len);
431 UChar *pattern = NEW_ARRAY(UChar, plen);
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DRegOps.java199 public static final int NEW_ARRAY = 41; field in class:RegOps
354 case NEW_ARRAY: return "new-array";
/external/icu4c/test/cintltst/
H A Ducsdetst.c21 #define NEW_ARRAY(type,count) (type *) malloc((count) * sizeof(type)) macro
75 char *bytes = NEW_ARRAY(char, byteCount + 1);
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DDops.java209 public static final Dop NEW_ARRAY = field in class:Dops
210 new Dop(Opcodes.NEW_ARRAY, Opcodes.NEW_ARRAY,
958 new Dop(Opcodes.NEW_ARRAY_JUMBO, Opcodes.NEW_ARRAY,
1141 set(NEW_ARRAY);
/external/dexmaker/src/dx/java/com/android/dx/io/
H A DOpcodeInfo.java202 public static final Info NEW_ARRAY = field in class:OpcodeInfo
203 new Info(Opcodes.NEW_ARRAY, "new-array",
1140 set(NEW_ARRAY);
H A DOpcodes.java79 public static final int NEW_ARRAY = 0x23; field in class:Opcodes
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
H A DOpcode.java72 NEW_ARRAY((byte)0x23, "new-array", ReferenceType.type, Format.Format22c, Opcode.CAN_THROW | Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER), enum constant in enum:Opcode

Completed in 1335 milliseconds