/external/icu4c/samples/layout/ |
arraymem.h | 16 #define NEW_ARRAY(type,count) (type *) malloc((count) * sizeof(type))
|
pflow.c | 123 flow = NEW_ARRAY(pf_object, 1); 146 flow->fLines = NEW_ARRAY(pl_line *, flow->fLinesMax); 147 flow->fParagraphLayout = NEW_ARRAY(pl_paragraph *, flow->fParagraphMax); 149 flow->fChars = NEW_ARRAY(LEUnicode, charCount + 1);
|
/external/icu4c/i18n/ |
inputext.cpp | 25 #define NEW_ARRAY(type,count) (type *) uprv_malloc((count) * sizeof(type)) 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);
|
winnmfmt.cpp | 48 #define NEW_ARRAY(type,count) (type *) uprv_malloc((count) * sizeof(type)) 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);
|
csdetect.cpp | 32 #define NEW_ARRAY(type,count) (type *) uprv_malloc((count) * sizeof(type)) 133 recognizers = NEW_ARRAY(CharsetRecognizer *, rCount); 405 UEnumeration *en = NEW_ARRAY(UEnumeration, 1); 407 en->context = (void*)NEW_ARRAY(Context, 1);
|
windtfmt.cpp | 50 #define NEW_ARRAY(type,count) (type *) uprv_malloc((count) * sizeof(type)) 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);
|
bmsearch.cpp | 38 #define NEW_ARRAY(type, count) (type *) uprv_malloc((count) * sizeof(type)) 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);
|
ucsdet.cpp | 21 #define NEW_ARRAY(type,count) (type *) uprv_malloc((count) * sizeof(type))
|
colldata.cpp | 38 #define NEW_ARRAY(type, count) (type *) uprv_malloc((count) * sizeof(type)) 138 uint32_t *newCEs = NEW_ARRAY(uint32_t, newMax); 589 keyBuffer = NEW_ARRAY(char, *keyBufferLength); 678 key = NEW_ARRAY(char, cacheKeyLength); 1002 int32_t *history = NEW_ARRAY(int32_t, clength);
|
ucoleitr.cpp | 38 #define NEW_ARRAY(type, count) (type *) uprv_malloc((count) * sizeof(type)) 92 RCEI *newBuffer = NEW_ARRAY(RCEI, bufferSize + BUFFER_GROW); 170 PCEI *newBuffer = NEW_ARRAY(PCEI, bufferSize + BUFFER_GROW);
|
/external/icu4c/test/letest/ |
letest.h | 29 #define NEW_ARRAY(type,count) (type *) malloc((count) * sizeof(type))
|
letsutil.cpp | 38 char *cString = NEW_ARRAY(char, cLength + 1); 65 char *cString = NEW_ARRAY(char, cLength + 1);
|
FontTableCache.cpp | 25 fTableCache = NEW_ARRAY(FontTableCacheEntry, fTableCacheSize);
|
PortableFontInstance.cpp | 96 fDirectory = (const SFNTDirectory *) NEW_ARRAY(char, dirSize); 223 void *table = NEW_ARRAY(char, *length); 278 char *result = NEW_ARRAY(char, length + 2); 311 LEUnicode16 *result = NEW_ARRAY(LEUnicode16, length + 2);
|
gendata.cpp | 259 glyphs = NEW_ARRAY(LEGlyphID, glyphCount); 260 indices = NEW_ARRAY(le_int32, glyphCount); 261 positions = NEW_ARRAY(float, glyphCount * 2 + 2);
|
xmlreader.cpp | 45 le_uint32 *array = NEW_ARRAY(le_uint32, arraySize); 91 float *array = NEW_ARRAY(float, arraySize);
|
letest.cpp | 69 glyphs = NEW_ARRAY(LEGlyphID, glyphCount + 10); 70 indices = NEW_ARRAY(le_int32, glyphCount + 10); 71 positions = NEW_ARRAY(float, glyphCount + 10); 451 le_uint32 *array = NEW_ARRAY(le_uint32, arraySize); 497 float *array = NEW_ARRAY(float, arraySize); 699 actual.glyphs = NEW_ARRAY(LEGlyphID, actual.glyphCount); 700 actual.indices = NEW_ARRAY(le_int32, actual.glyphCount); 701 actual.positions = NEW_ARRAY(float, actual.glyphCount * 2 + 2); [all...] |
cletest.c | 60 glyphs = NEW_ARRAY(LEGlyphID, glyphCount + 10); 61 indices = NEW_ARRAY(le_int32, glyphCount + 10); 62 positions = NEW_ARRAY(float, glyphCount + 10); 472 actual.glyphs = NEW_ARRAY(LEGlyphID, actual.glyphCount); 473 actual.indices = NEW_ARRAY(le_int32, actual.glyphCount); 474 actual.positions = NEW_ARRAY(float, actual.glyphCount * 2 + 2);
|
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
RegOps.java | 199 public static final int NEW_ARRAY = 41; 354 case NEW_ARRAY: return "new-array";
|
Rops.java | 760 new Rop(RegOps.NEW_ARRAY, Type.INT_ARRAY, StdTypeList.INT, 766 new Rop(RegOps.NEW_ARRAY, Type.LONG_ARRAY, StdTypeList.INT, 772 new Rop(RegOps.NEW_ARRAY, Type.FLOAT_ARRAY, StdTypeList.INT, 778 new Rop(RegOps.NEW_ARRAY, Type.DOUBLE_ARRAY, StdTypeList.INT, 784 new Rop(RegOps.NEW_ARRAY, Type.BOOLEAN_ARRAY, StdTypeList.INT, 790 new Rop(RegOps.NEW_ARRAY, Type.BYTE_ARRAY, StdTypeList.INT, 796 new Rop(RegOps.NEW_ARRAY, Type.CHAR_ARRAY, StdTypeList.INT [all...] |
/dalvik/dx/src/com/android/dx/rop/code/ |
RegOps.java | 199 public static final int NEW_ARRAY = 41; 354 case NEW_ARRAY: return "new-array";
|
Rops.java | 760 new Rop(RegOps.NEW_ARRAY, Type.INT_ARRAY, StdTypeList.INT, 766 new Rop(RegOps.NEW_ARRAY, Type.LONG_ARRAY, StdTypeList.INT, 772 new Rop(RegOps.NEW_ARRAY, Type.FLOAT_ARRAY, StdTypeList.INT, 778 new Rop(RegOps.NEW_ARRAY, Type.DOUBLE_ARRAY, StdTypeList.INT, 784 new Rop(RegOps.NEW_ARRAY, Type.BOOLEAN_ARRAY, StdTypeList.INT, 790 new Rop(RegOps.NEW_ARRAY, Type.BYTE_ARRAY, StdTypeList.INT, 796 new Rop(RegOps.NEW_ARRAY, Type.CHAR_ARRAY, StdTypeList.INT [all...] |
/external/srec/portable/include/ |
pmemory.h | 70 #define NEW_ARRAY(type, n, tag) ((type*)CALLOC(n, sizeof(type), tag)) 143 #define NEW_ARRAY(type, nbElem, tag) ((type *) CALLOC(nbElem, sizeof(type), tag))
|
/external/icu4c/test/intltest/ |
winnmtst.cpp | 48 #define NEW_ARRAY(type,count) (type *) uprv_malloc((count) * sizeof(type)) 157 nBuffer = NEW_ARRAY(UChar, newLength + 1); 195 buffer = NEW_ARRAY(UChar, newLength); 209 buffer = NEW_ARRAY(UChar, newLength);
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
RopToDop.java | 271 * Note: No map entries for invoke*, new_array, and 301 * The move_exception, new_array, filled_new_array, and 321 case RegOps.NEW_ARRAY: return Dops.NEW_ARRAY;
|