Lines Matching refs:data
216 const float data[4] = { 0, 1, 2, 3 }; in TEST() local
217 CHECK_ARRAY_CLOSE (data, data, 4, 0.01f); in TEST()
301 const float data[4] = { 0, 1, 2, 3 }; in TEST() local
302 CHECK_ARRAY_EQUAL (data, data, 4); in TEST()
365 static float const data[] = {1,2,3,4}; in FunctionWithSideEffects2() local
366 return data; in FunctionWithSideEffects2()
376 const float data[] = { 0, 1, 2, 3 }; in TEST() local
377 CHECK_ARRAY_CLOSE (data, FunctionWithSideEffects2(), 4, 0.01f); in TEST()
389 const float data[] = { 0, 1, 3, 3 }; in TEST() local
390 CHECK_ARRAY_CLOSE (data, FunctionWithSideEffects2(), 4, 0.01f); in TEST()
404 const float data[2][2] = { {0, 1}, {2, 3} }; in TEST() local
405 CHECK_ARRAY2D_CLOSE (data, data, 2, 2, 0.01f); in TEST()
488 static const float* const data[] = {data1, data2}; in FunctionWithSideEffects3() local
489 return data; in FunctionWithSideEffects3()
499 const float data[2][2] = { {0, 1}, {2, 3} }; in TEST() local
500 CHECK_ARRAY2D_CLOSE (data, FunctionWithSideEffects3(), 2, 2, 0.01f); in TEST()
512 const float data[2][2] = { {0, 1}, {3, 3} }; in TEST() local
513 CHECK_ARRAY2D_CLOSE (data, FunctionWithSideEffects3(), 2, 2, 0.01f); in TEST()