HomeSort by relevance Sort by last modified time
    Searched refs:NEW_ARRAY (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/icu/icu4c/source/samples/layout/
arraymem.h 19 #define NEW_ARRAY(type,count) (type *) malloc((count) * sizeof(type))
pflow.c 126 flow = NEW_ARRAY(pf_object, 1);
149 flow->fLines = NEW_ARRAY(pl_line *, flow->fLinesMax);
150 flow->fParagraphLayout = NEW_ARRAY(pl_paragraph *, flow->fParagraphMax);
152 flow->fChars = NEW_ARRAY(LEUnicode, charCount + 1);
  /external/icu/icu4c/source/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 52 #define NEW_ARRAY(type,count) (type *) uprv_malloc((count) * sizeof(type))
93 fmt->lpDecimalSep = NEW_ARRAY(wchar_t, 6);
96 fmt->lpThousandSep = NEW_ARRAY(wchar_t, 6);
120 fmt->lpDecimalSep = NEW_ARRAY(wchar_t, 6);
123 fmt->lpThousandSep = NEW_ARRAY(wchar_t, 6);
129 fmt->lpCurrencySymbol = NEW_ARRAY(wchar_t, 8);
362 nBuffer = NEW_ARRAY(UChar, newLength + 1);
416 buffer = NEW_ARRAY(wchar_t, newLength);
436 buffer = NEW_ARRAY(wchar_t, newLength);
csdetect.cpp 32 #define NEW_ARRAY(type,count) (type *) uprv_malloc((count) * sizeof(type))
125 fCSRecognizers = NEW_ARRAY(CSRecognizerInfo *, rCount);
300 fEnabledRecognizers = NEW_ARRAY(UBool, fCSRecognizers_size);
444 UEnumeration *en = NEW_ARRAY(UEnumeration, 1);
450 en->context = (void*)NEW_ARRAY(Context, 1);
467 UEnumeration *en = NEW_ARRAY(UEnumeration, 1);
473 en->context = (void*)NEW_ARRAY(Context, 1);
windtfmt.cpp 52 #define NEW_ARRAY(type,count) (type *) uprv_malloc((count) * sizeof(type))
174 fTZI = NEW_ARRAY(TIME_ZONE_INFORMATION, 1);
208 this->fTZI = NEW_ARRAY(TIME_ZONE_INFORMATION, 1);
325 buffer = NEW_ARRAY(wchar_t, newLength);
358 buffer = NEW_ARRAY(wchar_t, newLength);
ucoleitr.cpp 41 #define NEW_ARRAY(type, count) (type *) uprv_malloc((size_t)(count) * sizeof(type))
94 RCEI *newBuffer = NEW_ARRAY(RCEI, bufferSize + BUFFER_GROW);
156 PCEI *newBuffer = NEW_ARRAY(PCEI, bufferSize + BUFFER_GROW);
ucsdet.cpp 26 #define NEW_ARRAY(type,count) (type *) uprv_malloc((count) * sizeof(type))
  /external/icu/icu4c/source/test/letest/
letest.h 36 #define NEW_ARRAY(type,count) (type *) malloc((count) * sizeof(type))
letsutil.cpp 42 char *cString = NEW_ARRAY(char, cLength + 1);
69 char *cString = NEW_ARRAY(char, cLength + 1);
gendata.cpp 318 glyphs = NEW_ARRAY(LEGlyphID, glyphCount);
319 indices = NEW_ARRAY(le_int32, glyphCount);
320 positions = NEW_ARRAY(float, glyphCount * 2 + 2);
xmlreader.cpp 47 le_uint32 *array = NEW_ARRAY(le_uint32, arraySize);
93 float *array = NEW_ARRAY(float, arraySize);
letest.cpp 71 glyphs = NEW_ARRAY(LEGlyphID, glyphCount + 10);
72 indices = NEW_ARRAY(le_int32, glyphCount + 10);
73 positions = NEW_ARRAY(float, glyphCount + 10);
454 le_uint32 *array = NEW_ARRAY(le_uint32, arraySize);
500 float *array = NEW_ARRAY(float, arraySize);
702 actual.glyphs = NEW_ARRAY(LEGlyphID, actual.glyphCount);
703 actual.indices = NEW_ARRAY(le_int32, actual.glyphCount);
704 actual.positions = NEW_ARRAY(float, actual.glyphCount * 2 + 2);
    [all...]
cletest.c 64 glyphs = NEW_ARRAY(LEGlyphID, glyphCount + 10);
65 indices = NEW_ARRAY(le_int32, glyphCount + 10);
66 positions = NEW_ARRAY(float, glyphCount + 10);
476 actual.glyphs = NEW_ARRAY(LEGlyphID, actual.glyphCount);
477 actual.indices = NEW_ARRAY(le_int32, actual.glyphCount);
478 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;
370 case NEW_ARRAY: return "new-array";
Rops.java 761 new Rop(RegOps.NEW_ARRAY, Type.INT_ARRAY, StdTypeList.INT,
767 new Rop(RegOps.NEW_ARRAY, Type.LONG_ARRAY, StdTypeList.INT,
773 new Rop(RegOps.NEW_ARRAY, Type.FLOAT_ARRAY, StdTypeList.INT,
779 new Rop(RegOps.NEW_ARRAY, Type.DOUBLE_ARRAY, StdTypeList.INT,
785 new Rop(RegOps.NEW_ARRAY, Type.BOOLEAN_ARRAY, StdTypeList.INT,
791 new Rop(RegOps.NEW_ARRAY, Type.BYTE_ARRAY, StdTypeList.INT,
797 new Rop(RegOps.NEW_ARRAY, Type.CHAR_ARRAY, StdTypeList.INT
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
Format22c.java 67 if (info.opcode == Opcode.INSTANCE_OF || info.opcode == Opcode.NEW_ARRAY) {
  /external/icu/icu4c/source/test/intltest/
winnmtst.cpp 53 #define NEW_ARRAY(type,count) (type *) uprv_malloc((count) * sizeof(type))
162 nBuffer = NEW_ARRAY(UChar, newLength + 1);
200 buffer = NEW_ARRAY(wchar_t, newLength);
214 buffer = NEW_ARRAY(wchar_t, newLength);
colldata.cpp 37 #define NEW_ARRAY(type, count) (type *) uprv_malloc((size_t)(count) * sizeof(type))
114 uint32_t *newCEs = NEW_ARRAY(uint32_t, newMax);
638 int32_t *history = NEW_ARRAY(int32_t, clength);
  /art/tools/dexfuzz/src/dexfuzz/program/mutators/
NewArrayLengthChanger.java 145 return opcode == Opcode.NEW_ARRAY;
  /external/icu/icu4c/source/test/perf/leperf/
xmlreader.cpp 51 le_uint32 *array = NEW_ARRAY(le_uint32, arraySize);
97 float *array = NEW_ARRAY(float, arraySize);
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
CodeItem.java 169 } else if (opcode == Opcode.INSTANCE_OF || opcode == Opcode.NEW_ARRAY) {
Opcode.java 55 NEW_ARRAY,

Completed in 3136 milliseconds

1 2 3