Home
last modified time | relevance | path

Searched refs:retval (Results 426 - 450 of 538) sorted by relevance

1...<<11121314151617181920>>...22

/third_party/FreeBSD/sys/dev/usb/storage/
H A Dumass.c756 uint16_t retval; in umass_get_proto() local
758 retval = 0; in umass_get_proto()
768 retval |= UMASS_PROTO_SCSI; in umass_get_proto()
771 retval |= UMASS_PROTO_UFI; in umass_get_proto()
774 retval |= UMASS_PROTO_RBC; in umass_get_proto()
778 retval |= UMASS_PROTO_ATAPI; in umass_get_proto()
786 retval |= UMASS_PROTO_CBI; in umass_get_proto()
789 retval |= UMASS_PROTO_CBI_I; in umass_get_proto()
793 retval |= UMASS_PROTO_BBB; in umass_get_proto()
799 return (retval); in umass_get_proto()
[all...]
/third_party/mesa3d/src/microsoft/compiler/
H A Ddxil_module.c376 bool retval = false; in types_equal()
379 retval = true; in types_equal()
382 retval = lhs->float_bits == rhs->float_bits; in types_equal()
385 retval = lhs->int_bits == rhs->int_bits; in types_equal()
388 retval = types_equal(lhs->ptr_target_type, rhs->ptr_target_type); in types_equal()
392 retval = (lhs->array_or_vector_def.num_elems == rhs->array_or_vector_def.num_elems) && in types_equal()
400 retval = type_list_equal(&lhs->function_def.args, &rhs->function_def.args); in types_equal()
403 retval = type_list_equal(&lhs->struct_def.elem, &rhs->struct_def.elem); in types_equal()
405 assert(!retval && "Types are equal in structure but not as pointers"); in types_equal()
406 return retval; in types_equal()
[all...]
/third_party/mesa3d/src/gallium/drivers/r600/
H A Dr600_state.c169 unsigned retval = 0; in r600_is_format_supported() local
206 retval |= PIPE_BIND_SAMPLER_VIEW; in r600_is_format_supported()
209 retval |= PIPE_BIND_SAMPLER_VIEW; in r600_is_format_supported()
219 retval |= usage & in r600_is_format_supported()
226 retval |= usage & PIPE_BIND_BLENDABLE; in r600_is_format_supported()
231 retval |= PIPE_BIND_DEPTH_STENCIL; in r600_is_format_supported()
236 retval |= PIPE_BIND_VERTEX_BUFFER; in r600_is_format_supported()
241 retval |= PIPE_BIND_INDEX_BUFFER; in r600_is_format_supported()
247 retval |= PIPE_BIND_LINEAR; in r600_is_format_supported()
249 return retval in r600_is_format_supported()
[all...]
/third_party/mesa3d/src/compiler/glsl/
H A Dbuiltin_functions.cpp7109 ir_variable *retval = body.make_temp(glsl_type::bool_type, "retval"); in _is_sparse_texels_resident() local
7113 body.emit(call(f, retval, sig->parameters)); in _is_sparse_texels_resident()
7114 body.emit(ret(retval)); in _is_sparse_texels_resident()
7967 ir_variable *retval = body.make_temp(glsl_type::uint_type, "atomic_retval"); in _atomic_counter_op() local
7968 body.emit(call(shader->symbols->get_function(intrinsic), retval, in _atomic_counter_op()
7970 body.emit(ret(retval)); in _atomic_counter_op()
7982 ir_variable *retval = body.make_temp(glsl_type::uint_type, "atomic_retval"); in _atomic_counter_op1() local
8000 ir_instruction *const c = call(func, retval, parameters); in _atomic_counter_op1()
8007 body.emit(call(shader->symbols->get_function(intrinsic), retval, in _atomic_counter_op1()
8024 ir_variable *retval = body.make_temp(glsl_type::uint_type, "atomic_retval"); _atomic_counter_op2() local
8042 ir_variable *retval = body.make_temp(type, "atomic_retval"); _atomic_op2() local
8061 ir_variable *retval = body.make_temp(type, "atomic_retval"); _atomic_op3() local
8349 ir_variable *retval = body.make_temp(glsl_type::uint64_t_type, "retval"); _ballot() local
8372 ir_variable *retval = body.make_temp(type, "retval"); _read_first_invocation() local
8397 ir_variable *retval = body.make_temp(type, "retval"); _read_invocation() local
8437 ir_variable *retval = body.make_temp(glsl_type::uvec2_type, "clock_retval"); _shader_clock() local
8468 ir_variable *retval = body.make_temp(glsl_type::bool_type, "retval"); _vote() local
8489 ir_variable *retval = body.make_temp(glsl_type::bool_type, "retval"); _helper_invocation() local
[all...]
H A Dir_builder.h129 ir_return *ret(operand retval);
H A Dir_reader.cpp532 ir_rvalue *retval = read_rvalue(s_retval); in read_return() local
533 if (retval == NULL) { in read_return()
537 return new(mem_ctx) ir_return(retval); in read_return()
/third_party/ltp/tools/sparse/sparse-src/
H A Dinline.c393 struct expression *retval = copy_expression(stmt->ret_value); in copy_one_statement() local
397 stmt->ret_value = retval; in copy_one_statement()
H A Dlinearize.c1496 pseudo_t retval, call; in linearize_call_expression() local
1509 retval = fntype->op->linearize(ep, expr); in linearize_call_expression()
1510 if (retval) in linearize_call_expression()
1511 return retval; in linearize_call_expression()
1533 retval = VOID; in linearize_call_expression()
1535 retval = alloc_pseudo(insn); in linearize_call_expression()
1536 insn->target = retval; in linearize_call_expression()
1567 return retval; in linearize_call_expression()
/third_party/musl/libc-test/src/functionalext/supplement/network/network_gtest/
H A Dsocket_test.cpp592 int retval = sendmsg(sockfd, &msg, 2); in HWTEST_F() local
593 EXPECT_NE(-1, retval); in HWTEST_F()
/third_party/pulseaudio/src/pulsecore/
H A Dcore.c522 int pa_core_exit(pa_core *c, bool force, int retval) { in pa_core_exit() argument
528 c->mainloop->quit(c->mainloop, retval); in pa_core_exit()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dinst_buff_addr_check_pass.cpp429 uint32_t retval = call_inst->result_id(); in GenSearchAndTest() local
430 return retval; in GenSearchAndTest()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dinst_buff_addr_check_pass.cpp429 uint32_t retval = call_inst->result_id(); in GenSearchAndTest() local
430 return retval; in GenSearchAndTest()
/third_party/python/Lib/
H A Dbdb.py876 def user_return(self, frame, retval):
877 print('+++ return', retval)
/foundation/ability/ability_runtime/frameworks/native/ability/native/
H A Dability.cpp1321 int retval = -1; in ChangeRef2Value() local
1324 return retval; in ChangeRef2Value()
1330 return retval; in ChangeRef2Value()
1336 return retval; in ChangeRef2Value()
1340 retval = refResult->GetCount(); in ChangeRef2Value()
1342 retval = DataUriUtils::GetId(refResult->GetUri()); in ChangeRef2Value()
1345 return retval; in ChangeRef2Value()
/third_party/python/Modules/
H A Dposixmodule.c1901 int retval = 0; in win32_xstat_impl() local
1977 retval = -1; in win32_xstat_impl()
2010 retval = -1; in win32_xstat_impl()
2020 retval = -1; in win32_xstat_impl()
2043 retval = -1; in win32_xstat_impl()
2071 error = retval ? GetLastError() : 0; in win32_xstat_impl()
2073 retval = -1; in win32_xstat_impl()
2074 } else if (retval) { in win32_xstat_impl()
2080 return retval; in win32_xstat_impl()
4738 int retval; in os_getpriority_impl() local
4764 int retval; os_setpriority_impl() local
11553 BOOL retval; os__getdiskusage_impl() local
11558 retval = GetDiskFreeSpaceExW(path->wide, &_, &total, &free); os__getdiskusage_impl() local
11573 retval = GetDiskFreeSpaceExW(dir_path, &_, &total, &free); os__getdiskusage_impl() local
[all...]
/device/soc/rockchip/common/sdk_linux/ipc/
H A Dshm.c1752 int retval = -EINVAL; in ksys_shmdt() local
1760 return retval; in ksys_shmdt()
1816 retval = 0; in ksys_shmdt()
1832 /* finding a matching vma now does not alter retval */ in ksys_shmdt()
1846 retval = 0; in ksys_shmdt()
1852 return retval; in ksys_shmdt()
/third_party/vk-gl-cts/modules/gles3/performance/
H A Des3pDepthTests.cpp187 vector<float> retval; in getFullScreenGrid() local
201 retval.reserve(resolution*resolution*6); in getFullScreenGrid()
222 retval.insert(retval.end(), DE_ARRAY_BEGIN(temp), DE_ARRAY_END(temp)); in getFullScreenGrid()
225 return retval; in getFullScreenGrid()
/device/soc/rockchip/common/hardware/rga/include/
H A Drga.h370 void (*complete)(int retval);
/device/soc/rockchip/rk3399/hardware/rga/include/
H A Drga.h378 void (*complete)(int retval);
/device/soc/rockchip/rk3568/hardware/rga/include/
H A Drga.h378 void (*complete)(int retval);
/third_party/selinux/libsepol/src/
H A Dlink.c2466 int i, ret, retval = -1; in link_modules() local
2534 retval = ret; in link_modules()
2550 retval = SEPOL_EREQ; in link_modules()
2561 retval = SEPOL_EREQ; in link_modules()
2570 retval = 0; in link_modules()
2577 return retval; in link_modules()
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
H A Dsfn_instr_alu.cpp1002 AluInstr *retval = nullptr; in from_string() local
1004 retval = new AluInstr(op_descr.lds_opcode, sources, flags); in from_string()
1006 retval = new AluInstr(op_descr.alu_opcode, dest, sources, flags, slots); in from_string()
1008 retval->set_bank_swizzle(bank_swizzle); in from_string()
1009 retval->set_cf_type(cf); in from_string()
1011 group->add_instruction(retval); in from_string()
1012 retval= nullptr; in from_string()
1014 return retval; in from_string()
/third_party/python/Lib/test/
H A Dtest_set.py469 retval = self.s.update(self.otherword)
470 self.assertEqual(retval, None)
493 retval = self.s.intersection_update(self.otherword)
494 self.assertEqual(retval, None)
522 retval = self.s.difference_update(self.otherword)
523 self.assertEqual(retval, None)
559 retval = self.s.symmetric_difference_update(self.otherword)
560 self.assertEqual(retval, None)
/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/mac/hmac/
H A Dhmac_11i.c989 hi_u32 retval = hmac_check_security_capability_supplicant_check(mac_vap, bss_dscr); in hmac_check_security_capability_supplicant() local
990 if (retval == HI_ERR_CODE_PTR_NULL) { in hmac_check_security_capability_supplicant()
992 } else if (retval == HI_CONTINUE) { in hmac_check_security_capability_supplicant()
/third_party/backends/backend/
H A Ddc240.c1835 SANE_Int retval = 0; in read_dir() local
1923 retval++; in read_dir()
1932 return retval; in read_dir()

Completed in 66 milliseconds

1...<<11121314151617181920>>...22