Searched refs:rt_code (Results 1 – 4 of 4) sorted by relevance
/external/autotest/client/site_tests/graphics_GLAPICheck/src/ |
D | gles_APICheck.cc | 192 EGLBoolean rt_code = eglInitialize(*egl_display, &no_major, &no_minor); in InitGraphics() local 193 if (rt_code == EGL_FALSE) { in InitGraphics() 204 rt_code = eglChooseConfig(*egl_display, config_attribs, in InitGraphics() 206 if (rt_code == EGL_FALSE || num_configs != 1) { in InitGraphics() 225 rt_code = eglMakeCurrent(*egl_display, *egl_surface, in InitGraphics() 227 if (rt_code == EGL_FALSE) { in InitGraphics() 296 bool rt_code = true; in main() local 305 rt_code = EntryImportGL(argv[1], argv[2], &handle_gles, &handle_egl); in main() 309 if (rt_code) in main() 310 rt_code = InitGraphics(&display, &egl_display, in main() [all …]
|
D | gl_APICheck.cc | 120 bool rt_code = InitGraphics(&display, &window, &context); in main() local 123 if (rt_code) in main() 124 rt_code = GetGLVersion(); in main() 127 if (rt_code) in main() 128 rt_code = GetGLExtensions(); in main() 131 if (rt_code) in main() 132 rt_code = GetGLXExtensions(display); in main() 135 if (rt_code) in main() 136 rt_code = GetXExtensions(display); in main()
|
/external/v8/src/mips64/ |
D | assembler-mips64.cc | 3361 uint32_t rt_code = GetRt(instr1); in set_target_address_at() local 3378 *p = LUI | (rt_code << kRtShift) | ((itarget >> 32) & kImm16Mask); in set_target_address_at() 3379 *(p + 1) = ORI | (rt_code << kRtShift) | (rt_code << kRsShift) in set_target_address_at() 3381 *(p + 3) = ORI | (rt_code << kRsShift) | (rt_code << kRtShift) in set_target_address_at()
|
/external/v8/src/mips/ |
D | assembler-mips.cc | 3035 uint32_t rt_code = GetRtField(instr2); in set_target_address_at() local 3048 *p = LUI | rt_code | ((itarget & kHiMask) >> kLuiShift); in set_target_address_at() 3049 *(p + 1) = ORI | rt_code | (rt_code << 5) | (itarget & kImm16Mask); in set_target_address_at()
|