Home
last modified time | relevance | path

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

/external/deqp/external/openglcts/modules/glesext/gpu_shader5/
DesextcGPUShader5TextureGatherOffset.cpp1322 CapturedVaryings captured_data; in verifyResult() local
1346 memcpy(captured_data.without_offset_0, without_offset_0, bytes_per_varying); in verifyResult()
1347 memcpy(captured_data.without_offset_1, without_offset_1, bytes_per_varying); in verifyResult()
1348 memcpy(captured_data.without_offset_2, without_offset_2, bytes_per_varying); in verifyResult()
1349 memcpy(captured_data.without_offset_3, without_offset_3, bytes_per_varying); in verifyResult()
1351 memcpy(captured_data.with_offset_0, with_offset_0, bytes_per_varying); in verifyResult()
1352 memcpy(captured_data.with_offset_1, with_offset_1, bytes_per_varying); in verifyResult()
1353 memcpy(captured_data.with_offset_2, with_offset_2, bytes_per_varying); in verifyResult()
1354 memcpy(captured_data.with_offset_3, with_offset_3, bytes_per_varying); in verifyResult()
1357 const bool is_result_ok = checkResult(captured_data, vertex, m_texture_size); in verifyResult()
[all …]
DesextcGPUShader5TextureGatherOffset.hpp219 virtual bool checkResult(const CapturedVaryings& captured_data, unsigned int index,
272 …virtual bool checkResult(const CapturedVaryings& captured_data, unsigned int index, unsigned int t…
435 …virtual bool checkResult(const CapturedVaryings& captured_data, unsigned int index, unsigned int t…
500 …virtual bool checkResult(const CapturedVaryings& captured_data, unsigned int index, unsigned int t…
649 …virtual bool checkResult(const CapturedVaryings& captured_data, unsigned int index, unsigned int t…
689 …virtual bool checkResult(const CapturedVaryings& captured_data, unsigned int index, unsigned int t…
742 …virtual bool checkResult(const CapturedVaryings& captured_data, unsigned int index, unsigned int t…
930 …virtual bool checkResult(const CapturedVaryings& captured_data, unsigned int index, unsigned int t…
961 …virtual bool checkResult(const CapturedVaryings& captured_data, unsigned int index, unsigned int t…
992 …virtual bool checkResult(const CapturedVaryings& captured_data, unsigned int index, unsigned int t…
[all …]
/external/tensorflow/tensorflow/lite/experimental/micro/examples/micro_speech/apollo3/
D.gitignore1 captured_data.txt
2 captured_data.wav
Dpushbutton_cmsis_voice.cmd22 dump verilog value captured_data.txt captured_data
Dpushbutton_test.cc29 extern int16_t captured_data[16000];
58 error_reporter, captured_data, preprocessed_data); in TF_LITE_MICRO_TEST()
Dpushbutton_main.c42 captured_data[FRAME_SIZE * NUM_FRAMES]; // Location of 1-second data buffer variable
146 (uint32_t)(&captured_data[FRAME_SIZE * g_numFramesCaptured]); in pdm_data_get()
DREADME.md97 captured_data.txt, which can then be processed by the python file
/external/deqp/external/openglcts/modules/gl/
Dgl4cShaderSubroutineTests.cpp5812 std::vector<GLubyte> captured_data; in testDraw() local
5813 captured_data.resize(m_texture_width * m_texture_height * 4); in testDraw()
5815 color_texture.get(GL_RGBA, GL_UNSIGNED_BYTE, &captured_data[0]); in testDraw()
5827 …is_as_expected = is_as_expected && (expected_color[0] == captured_data[point_offset + 0]); /* red … in testDraw()
5828 …is_as_expected = is_as_expected && (expected_color[1] == captured_data[point_offset + 1]); /* gree… in testDraw()
5829 …is_as_expected = is_as_expected && (expected_color[2] == captured_data[point_offset + 2]); /* blue… in testDraw()
5830 …is_as_expected = is_as_expected && (expected_color[3] == captured_data[point_offset + 3]); /* alph… in testDraw()