Searched defs:temp (Results 1 - 25 of 1265) sorted by relevance

1234567891011>>

/external/chromium_org/gpu/command_buffer/service/
H A Dgles2_cmd_decoder_unittest_2_autogen.h139 GLfloat temp[1] = { local
142 cmd.Init(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, &temp[0]);
148 EXPECT_EQ(error::kNoError, ExecuteImmediateCmd(cmd, sizeof(temp)));
157 GLfloat temp[1] = { local
160 cmd.Init(GL_TEXTURE_1D, GL_TEXTURE_MAG_FILTER, &temp[0]);
161 EXPECT_EQ(error::kNoError, ExecuteImmediateCmd(cmd, sizeof(temp)));
170 GLfloat temp[1] = { local
173 cmd.Init(GL_TEXTURE_3D, GL_TEXTURE_MAG_FILTER, &temp[0]);
174 EXPECT_EQ(error::kNoError, ExecuteImmediateCmd(cmd, sizeof(temp)));
183 GLfloat temp[ local
232 GLint temp[1] = { local
250 GLint temp[1] = { local
263 GLint temp[1] = { local
276 GLint temp[1] = { local
300 GLfloat temp[1 * 2] = { local
325 GLfloat temp[2 * 2] = { local
348 GLint temp[2 * 2] = { local
371 GLfloat temp[3 * 2] = { local
394 GLint temp[3 * 2] = { local
417 GLfloat temp[4 * 2] = { local
440 GLint temp[4 * 2] = { local
456 GLfloat temp[4 * 2] = { local
472 GLfloat temp[9 * 2] = { local
488 GLfloat temp[16 * 2] = { local
536 GLfloat temp[1] = { local
560 GLfloat temp[2] = { local
584 GLfloat temp[3] = { local
608 GLfloat temp[4] = { local
[all...]
H A Dgles2_cmd_decoder_unittest_extensions_autogen.h24 GLfloat temp[16] = { 0, }; local
25 cmd.Init(GL_PATH_PROJECTION_CHROMIUM, &temp[0]);
31 ExecuteImmediateCmd(cmd, sizeof(temp)));
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Dswapyv12buffer.c16 unsigned char *temp; local
18 temp = last_frame->buffer_alloc;
20 new_frame->buffer_alloc = temp;
22 temp = last_frame->y_buffer;
24 new_frame->y_buffer = temp;
26 temp = last_frame->u_buffer;
28 new_frame->u_buffer = temp;
30 temp = last_frame->v_buffer;
32 new_frame->v_buffer = temp;
/external/chromium_org/v8/test/webkit/
H A Dlogical-or-jless.js29 var temp = failMessage || failMessage; variable
/external/libcxx/test/input.output/file.streams/fstreams/filebuf.assign/
H A Dmember_swap.pass.cpp23 std::string temp = get_temp_file_name(); local
26 assert(f.open(temp.c_str(), std::ios_base::out | std::ios_base::in
38 std::remove(temp.c_str());
41 assert(f.open(temp.c_str(), std::ios_base::out | std::ios_base::in
53 std::remove(temp.c_str());
H A Dmove_assign.pass.cpp24 std::string temp = get_temp_file_name(); local
27 assert(f.open(temp.c_str(), std::ios_base::out | std::ios_base::in
39 std::remove(temp.c_str());
42 assert(f.open(temp.c_str(), std::ios_base::out | std::ios_base::in
54 std::remove(temp.c_str());
H A Dnonmember_swap.pass.cpp25 std::string temp = get_temp_file_name(); local
28 assert(f.open(temp.c_str(), std::ios_base::out | std::ios_base::in
40 std::remove(temp.c_str());
43 assert(f.open(temp.c_str(), std::ios_base::out | std::ios_base::in
55 std::remove(temp.c_str());
/external/libcxx/test/input.output/file.streams/fstreams/filebuf.cons/
H A Dmove.pass.cpp24 std::string temp = get_temp_file_name(); local
27 assert(f.open(temp.c_str(), std::ios_base::out | std::ios_base::in
38 std::remove(temp.c_str());
41 assert(f.open(temp.c_str(), std::ios_base::out | std::ios_base::in
52 std::remove(temp.c_str());
/external/libcxx/test/input.output/file.streams/fstreams/filebuf.members/
H A Dopen_pointer.pass.cpp20 std::string temp = get_temp_file_name(); local
23 assert(f.open(temp.c_str(), std::ios_base::out) != 0);
29 assert(f.open(temp.c_str(), std::ios_base::in) != 0);
35 std::remove(temp.c_str());
38 assert(f.open(temp.c_str(), std::ios_base::out) != 0);
44 assert(f.open(temp.c_str(), std::ios_base::in) != 0);
50 remove(temp.c_str());
/external/libcxx/test/input.output/file.streams/fstreams/fstream.assign/
H A Dmove_assign.pass.cpp24 std::string temp = get_temp_file_name(); local
26 std::fstream fso(temp.c_str(), std::ios_base::in | std::ios_base::out
36 std::remove(temp.c_str());
38 std::wfstream fso(temp.c_str(), std::ios_base::in | std::ios_base::out
48 std::remove(temp.c_str());
/external/libcxx/test/input.output/file.streams/fstreams/fstream.cons/
H A Dmove.pass.cpp24 std::string temp = get_temp_file_name(); local
26 std::fstream fso(temp, std::ios_base::in | std::ios_base::out
35 std::remove(temp.c_str());
37 std::wfstream fso(temp, std::ios_base::in | std::ios_base::out
46 std::remove(temp.c_str());
H A Dpointer.pass.cpp23 std::string temp = get_temp_file_name(); local
25 std::fstream fs(temp.c_str(), std::ios_base::in | std::ios_base::out
33 std::remove(temp.c_str());
35 std::wfstream fs(temp.c_str(), std::ios_base::in | std::ios_base::out
43 std::remove(temp.c_str());
H A Dstring.pass.cpp23 std::string temp = get_temp_file_name(); local
25 std::fstream fs(temp,
34 std::remove(temp.c_str());
36 std::wfstream fs(temp,
45 std::remove(temp.c_str());
/external/libcxx/test/input.output/file.streams/fstreams/fstream.members/
H A Dclose.pass.cpp23 std::string temp = get_temp_file_name(); local
27 fs.open(temp.c_str(), std::ios_base::out);
32 std::remove(temp.c_str());
36 fs.open(temp.c_str(), std::ios_base::out);
41 std::remove(temp.c_str());
H A Dopen_pointer.pass.cpp23 std::string temp = get_temp_file_name(); local
27 fs.open(temp.c_str(), std::ios_base::in | std::ios_base::out
36 std::remove(temp.c_str());
40 fs.open(temp.c_str(), std::ios_base::in | std::ios_base::out
49 std::remove(temp.c_str());
H A Dopen_string.pass.cpp23 std::string temp = get_temp_file_name(); local
27 fs.open(temp, std::ios_base::in | std::ios_base::out
36 std::remove(temp.c_str());
40 fs.open(temp, std::ios_base::in | std::ios_base::out
49 std::remove(temp.c_str());
/external/libcxx/test/input.output/file.streams/fstreams/ofstream.assign/
H A Dmove_assign.pass.cpp24 std::string temp = get_temp_file_name(); local
26 std::ofstream fso(temp.c_str());
32 std::ifstream fs(temp.c_str());
37 std::remove(temp.c_str());
39 std::wofstream fso(temp.c_str());
45 std::wifstream fs(temp.c_str());
50 std::remove(temp.c_str());
/external/libcxx/test/input.output/file.streams/fstreams/ofstream.cons/
H A Dmove.pass.cpp24 std::string temp = get_temp_file_name(); local
26 std::ofstream fso(temp.c_str());
31 std::ifstream fs(temp.c_str());
36 std::remove(temp.c_str());
38 std::wofstream fso(temp.c_str());
43 std::wifstream fs(temp.c_str());
48 std::remove(temp.c_str());
H A Dpointer.pass.cpp23 std::string temp = get_temp_file_name(); local
25 std::ofstream fs(temp.c_str());
29 std::ifstream fs(temp.c_str());
34 std::remove(temp.c_str());
36 std::wofstream fs(temp.c_str());
40 std::wifstream fs(temp.c_str());
45 std::remove(temp.c_str());
H A Dstring.pass.cpp23 std::string temp = get_temp_file_name(); local
25 std::ofstream fs(temp);
29 std::ifstream fs(temp);
34 std::remove(temp.c_str());
36 std::wofstream fs(temp);
40 std::wifstream fs(temp);
45 std::remove(temp.c_str());
/external/libcxx/test/input.output/file.streams/fstreams/ofstream.members/
H A Dclose.pass.cpp23 std::string temp = get_temp_file_name(); local
27 fs.open(temp.c_str());
32 std::remove(temp.c_str());
36 fs.open(temp.c_str());
41 std::remove(temp.c_str());
H A Dopen_pointer.pass.cpp23 std::string temp = get_temp_file_name(); local
30 fs.open(temp.c_str());
35 std::ifstream fs(temp.c_str());
40 std::remove(temp.c_str());
47 fs.open(temp.c_str());
52 std::wifstream fs(temp.c_str());
57 std::remove(temp.c_str());
H A Dopen_string.pass.cpp23 std::string temp = get_temp_file_name(); local
30 fs.open(temp);
35 std::ifstream fs(temp.c_str());
40 std::remove(temp.c_str());
47 fs.open(temp);
52 std::wifstream fs(temp.c_str());
57 std::remove(temp.c_str());
H A Drdbuf.pass.cpp23 std::string temp = get_temp_file_name(); local
25 std::ofstream fs(temp.c_str());
29 std::remove(temp.c_str());
31 std::wofstream fs(temp.c_str());
35 std::remove(temp.c_str());
/external/libvpx/libvpx/vp8/common/
H A Dswapyv12buffer.c16 unsigned char *temp; local
18 temp = last_frame->buffer_alloc;
20 new_frame->buffer_alloc = temp;
22 temp = last_frame->y_buffer;
24 new_frame->y_buffer = temp;
26 temp = last_frame->u_buffer;
28 new_frame->u_buffer = temp;
30 temp = last_frame->v_buffer;
32 new_frame->v_buffer = temp;

Completed in 1554 milliseconds

1234567891011>>