Home | History | Annotate | Download | only in common

Lines Matching refs:newStateTable

1257     int32_t (*newStateTable)[256];
1351 newStateTable=(int32_t (*)[256])p;
1352 uprv_memcpy(newStateTable, mbcsTable->stateTable, mbcsTable->countStates*1024);
1354 newStateTable[0][EBCDIC_LF]=MBCS_ENTRY_FINAL(0, MBCS_STATE_VALID_DIRECT_16, U_NL);
1355 newStateTable[0][EBCDIC_NL]=MBCS_ENTRY_FINAL(0, MBCS_STATE_VALID_DIRECT_16, U_LF);
1358 newResults=(uint16_t *)newStateTable[mbcsTable->countStates];
1381 mbcsTable->swapLFNLStateTable=newStateTable;
1385 newStateTable=NULL;
1390 if(newStateTable!=NULL) {
1391 uprv_free(newStateTable);
1692 int32_t (*newStateTable)[256];
1698 newStateTable=(int32_t (*)[256])uprv_malloc((count+1)*1024);
1699 if(newStateTable==NULL) {
1705 uprv_memcpy(newStateTable, mbcsTable->stateTable, count*1024);
1708 state=newStateTable[0];
1716 state=newStateTable[count];
1720 mbcsTable->stateTable=(const int32_t (*)[256])newStateTable;