Home
last modified time | relevance | path

Searched refs:ANTLR3_REALLOC (Results 1 – 5 of 5) sorted by relevance

/external/antlr/runtime/C/src/
Dantlr3string.c808 …pANTLR3_UINT8 newAlloc = (pANTLR3_UINT8) ANTLR3_REALLOC((void *)string->chars, (ANTLR3_UINT32)(str… in append8()
836 …pANTLR3_UINT8 newAlloc = (pANTLR3_UINT8) ANTLR3_REALLOC((void *)string->chars, (ANTLR3_UINT32)((si… in appendUTF16_8()
875 …pANTLR3_UINT8 newAlloc = (pANTLR3_UINT8) ANTLR3_REALLOC((void *)string->chars, (ANTLR3_UINT32)( si… in appendUTF16_UTF16()
900 …pANTLR3_UINT8 newAlloc = (pANTLR3_UINT8) ANTLR3_REALLOC((void *)string->chars, (ANTLR3_UINT32)(len… in set8()
928 …pANTLR3_UINT8 newAlloc = (pANTLR3_UINT8) ANTLR3_REALLOC((void *)string->chars, (ANTLR3_UINT32)(siz… in setUTF16_8()
966 …pANTLR3_UINT8 newAlloc = (pANTLR3_UINT8) ANTLR3_REALLOC((void *)string->chars, (ANTLR3_UINT32)(siz… in setUTF16_UTF16()
989 …pANTLR3_UINT8 newAlloc = (pANTLR3_UINT8) ANTLR3_REALLOC((void *)string->chars, (ANTLR3_UINT32)(str… in addc8()
1011 …pANTLR3_UINT8 newAlloc = (pANTLR3_UINT8) ANTLR3_REALLOC((void *)string->chars, (ANTLR3_UINT32)(siz… in addcUTF16()
1083 …pANTLR3_UINT8 newAlloc = (pANTLR3_UINT8) ANTLR3_REALLOC((void *)string->chars, (ANTLR3_UINT32)(str… in insert8()
1126 …pANTLR3_UINT8 newAlloc = (pANTLR3_UINT8) ANTLR3_REALLOC((void *)string->chars, (ANTLR3_UINT32)(siz… in insertUTF16_8()
[all …]
Dantlr3commontree.c135 ANTLR3_REALLOC( (void *)factory->pools, // Current pools pointer (starts at NULL) in newPool()
Dantlr3collections.c1313 …pANTLR3_VECTOR_ELEMENT newElements = (pANTLR3_VECTOR_ELEMENT)ANTLR3_REALLOC(vector->elements, (siz… in antlr3VectorResize()
1528 ANTLR3_REALLOC( (void *)factory->pools, /* Current pools pointer (starts at NULL) */ in newPool()
2394 …topo->edges = (pANTLR3_BITSET*)ANTLR3_REALLOC(topo->edges, sizeof(pANTLR3_BITSET) * (maxEdge + 1)); in addEdge()
Dantlr3commontoken.c166 ANTLR3_REALLOC((void *)factory->pools, /* Current pools pointer (starts at NULL) */ in newPool()
/external/antlr/runtime/C/include/
Dantlr3defs.h472 #ifndef ANTLR3_REALLOC
476 #define ANTLR3_REALLOC(current, request) realloc ((void *)(current), (size_t)(request)) macro