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

1 2 3 4

  /external/icu/icu4c/source/samples/layout/
arraymem.h 19 #define NEW_ARRAY(type,count) (type *) malloc((count) * sizeof(type))
  /external/icu/icu4c/source/test/letest/
letest.h 36 #define NEW_ARRAY(type,count) (type *) malloc((count) * sizeof(type))
  /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);
ucsdet.cpp 26 #define NEW_ARRAY(type,count) (type *) uprv_malloc((count) * sizeof(type))
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);
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);
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);
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);
  /external/icu/icu4c/source/test/cintltst/
ucsdetst.c 22 #define NEW_ARRAY(type,count) (type *) malloc((count) * sizeof(type))
76 char *bytes = NEW_ARRAY(char, byteCount + 1);
  /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);
csdetest.cpp 30 #define NEW_ARRAY(type,count) (type *) /*uprv_*/malloc((count) * sizeof(type))
145 bytes = NEW_ARRAY(char, length + 1);
217 decoded = NEW_ARRAY(UChar, testLength);
331 UChar *detected = NEW_ARRAY(UChar, sLength);
    [all...]
ssearch.cpp 45 #define NEW_ARRAY(type, count) (type *) uprv_malloc((count) * sizeof(type))
    [all...]
  /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";
  /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";
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
Dops.java 205 public static final Dop NEW_ARRAY =
206 new Dop(DalvOps.NEW_ARRAY, DalvOps.NEW_ARRAY,
    [all...]
DalvOps.java 69 public static final int NEW_ARRAY = 0x23;
  /dalvik/dx/src/com/android/dx/dex/code/
Dops.java 208 public static final Dop NEW_ARRAY =
209 new Dop(Opcodes.NEW_ARRAY, Opcodes.NEW_ARRAY,
    [all...]
  /dalvik/dx/src/com/android/dx/io/
OpcodeInfo.java 202 public static final Info NEW_ARRAY =
203 new Info(Opcodes.NEW_ARRAY, "new-array",
    [all...]
Opcodes.java 80 public static final int NEW_ARRAY = 0x23;
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
Opcode.java 55 NEW_ARRAY,
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/
Opcode.java 79 NEW_ARRAY(0x23, "new-array", ReferenceType.TYPE, Format.Format22c, Opcode.CAN_THROW | Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
    [all...]
  /external/kotlinc/lib/
android-extensions-compiler.jar 
  /prebuilts/tools/common/m2/repository/com/google/dexmaker/dexmaker/1.0/
dexmaker-1.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/dexmaker/dexmaker/1.2/
dexmaker-1.2.jar 

Completed in 319 milliseconds

1 2 3 4