Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dtest1.c3829 int trueLength = 0; in test_bind_text() local
3843 value = (char*)Tcl_GetByteArrayFromObj(objv[3], &trueLength); in test_bind_text()
3846 toFree = malloc( trueLength + 1 ); in test_bind_text()
3851 memcpy(toFree, value, trueLength); in test_bind_text()
3852 toFree[trueLength] = 0; in test_bind_text()
3887 int trueLength = 0; in test_bind_text16() local
3903 value = (char*)Tcl_GetByteArrayFromObj(oString, &trueLength); in test_bind_text16()
3906 toFree = malloc( trueLength + 3 ); in test_bind_text16()
3911 memcpy(toFree, value, trueLength); in test_bind_text16()
3912 memset(toFree+trueLength, 0, 3); in test_bind_text16()