/third_party/FreeBSD/sys/dev/usb/storage/ |
H A D | umass.c | 756 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 D | dxil_module.c | 376 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 D | r600_state.c | 169 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 D | builtin_functions.cpp | 7109 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 D | ir_builder.h | 129 ir_return *ret(operand retval);
|
H A D | ir_reader.cpp | 532 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 D | inline.c | 393 struct expression *retval = copy_expression(stmt->ret_value); in copy_one_statement() local 397 stmt->ret_value = retval; in copy_one_statement()
|
H A D | linearize.c | 1496 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 D | socket_test.cpp | 592 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 D | core.c | 522 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 D | inst_buff_addr_check_pass.cpp | 429 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 D | inst_buff_addr_check_pass.cpp | 429 uint32_t retval = call_inst->result_id(); in GenSearchAndTest() local 430 return retval; in GenSearchAndTest()
|
/third_party/python/Lib/ |
H A D | bdb.py | 876 def user_return(self, frame, retval): 877 print('+++ return', retval)
|
/foundation/ability/ability_runtime/frameworks/native/ability/native/ |
H A D | ability.cpp | 1321 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 D | posixmodule.c | 1901 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 D | shm.c | 1752 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 D | es3pDepthTests.cpp | 187 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 D | rga.h | 370 void (*complete)(int retval);
|
/device/soc/rockchip/rk3399/hardware/rga/include/ |
H A D | rga.h | 378 void (*complete)(int retval);
|
/device/soc/rockchip/rk3568/hardware/rga/include/ |
H A D | rga.h | 378 void (*complete)(int retval);
|
/third_party/selinux/libsepol/src/ |
H A D | link.c | 2466 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 D | sfn_instr_alu.cpp | 1002 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 D | test_set.py | 469 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 D | hmac_11i.c | 989 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 D | dc240.c | 1835 SANE_Int retval = 0; in read_dir() local 1923 retval++; in read_dir() 1932 return retval; in read_dir()
|