HomeSort by: relevance | last modified time | path
    Searched refs:ret (Results 1 - 25 of 2439) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/lib/libpthread/arch/m68k/
pthread_md.h 38 unsigned long ret; local in function:pthread__sp
39 __asm("movl %%sp, %0" : "=g" (ret));
41 return ret;
  /src/lib/libpthread/arch/mips/
pthread_md.h 38 unsigned long ret; local in function:pthread__sp
40 __asm("move %0, $sp" : "=r" (ret));
42 return ret;
  /src/lib/libpthread/arch/or1k/
pthread_md.h 38 unsigned long ret; local in function:pthread__sp
40 __asm("l.ori %0, r0, 0" : "=r" (ret));
42 return ret;
  /src/lib/libpthread/arch/sparc/
pthread_md.h 38 unsigned long ret; local in function:pthread__sp
40 __asm("mov %%sp, %0" : "=r" (ret));
42 return ret;
  /src/lib/libpthread/arch/sparc64/
pthread_md.h 38 unsigned long ret; local in function:pthread__sp
40 __asm("mov %%sp, %0" : "=r" (ret));
42 return ret;
  /src/lib/libpthread/arch/riscv/
pthread_md.h 38 unsigned long ret; local in function:pthread__sp
40 __asm("mv\t%0, sp" : "=r" (ret));
42 return ret;
  /src/lib/csu/arch/vax/
crtn.S 41 ret
44 ret
  /src/lib/libpthread/arch/powerpc/
pthread_md.h 44 unsigned long ret; local in function:pthread__sp
46 __asm("mr %0,1" : "=r" (ret));
48 return ret;
  /src/lib/libpthread/arch/sh3/
pthread_md.h 44 unsigned long ret; local in function:pthread__sp
45 __asm("mov r15, %0" : "=r" (ret));
47 return ret;
  /src/tests/crypto/opencrypto/
h_ioctl.c 99 int ret; local in function:test_ngsession
115 ret = ioctl(fd, CIOCNGSESSION, &sg);
116 if (ret < 0)
119 return ret;
129 int ret; local in function:test_nfsession
138 ret = ioctl(fd, CIOCNFSESSION, &sf);
139 if (ret < 0)
142 return ret;
152 int ret; local in function:test_ncryptm
170 ret = ioctl(fd, CIOCNCRYPTM, &mop)
184 int ret; local in function:test_ncryptretm
265 int ret; local in function:test_ncryptret_noent
285 int ret; local in function:test_ncryptret_ent
348 int ret; local in function:test_ncryptret
367 int ret; local in function:set_userasymcrypto
384 int ret; local in function:test_asymfeat_each
396 int ret, new, orig; local in function:test_asymfeat
428 int fd, ret; local in function:main
    [all...]
  /src/lib/libc/inet/
inet_ntoa.c 59 static char ret[18]; local in function:__weak_alias
61 strlcpy(ret, "[inet_ntoa error]", sizeof(ret));
62 (void) inet_ntop(AF_INET, &in, ret, (socklen_t)sizeof ret);
63 return ret;
  /src/sys/lib/libsa/
atoi.c 39 int ret; local in function:atoi
41 ret = 0;
46 ret = (ret * 10) + (*c - '0');
48 return (*in == '-') ? -ret : ret;
  /src/sys/external/bsd/drm2/dist/drm/amd/powerplay/
amdgpu_smu_v12_0.c 89 int ret = 0, index = 0; local in function:smu_v12_0_send_msg_with_param
95 ret = smu_v12_0_wait_for_response(smu);
96 if (ret) {
99 return ret;
108 ret = smu_v12_0_wait_for_response(smu);
109 if (ret)
111 index, ret, param);
113 return ret;
136 int ret = 0; local in function:smu_v12_0_check_fw_version
138 ret = smu_get_smc_version(smu, &if_version, &smu_version)
211 int ret = 0; local in function:smu_v12_0_read_sensor
267 int ret = 0, timeout = 500; local in function:smu_v12_0_gfx_off_control
334 int ret = 0; local in function:smu_v12_0_get_enabled_mask
363 int ret = 0; local in function:smu_v12_0_get_current_clk_freq
382 int ret = 0; local in function:smu_v12_0_get_dpm_ultimate_freq
464 int ret = 0; local in function:smu_v12_0_set_soft_freq_limited_range
518 int ret = 0; local in function:smu_v12_0_set_driver_table_location
    [all...]
  /src/sys/arch/mvme68k/stand/libbug/
instat.c 16 int ret; local in function:peekchar
20 MVMEPROM_STATRET(ret);
  /src/lib/libc/citrus/
citrus_lc_template.h 37 int ret; local in function:_PREFIX
45 ret = _map_file(&file, path);
46 if (ret) {
47 ret = ENOENT;
51 ret = ENOMEM;
53 ret = _db_open(&db, &file, _CATEGORY_MAGIC,
55 if (!ret) {
56 ret = _PREFIX(init_normal)(data, db);
60 ret = _PREFIX(init_fallback)(data, &ms);
62 if (!ret)
    [all...]
citrus_csmapper.c 87 int ret; local in function:open_subdb
90 ret = _db_lookup_by_s(db, src, &r, NULL);
91 if (ret)
92 return ret;
93 ret = _db_open(subdb, &r, _CITRUS_PIVOT_SUB_MAGIC, _db_hash_std, NULL);
94 if (ret)
95 return ret;
106 int ret, num, i; local in function:find_best_pivot_pvdb
113 ret = _map_file(&fr, CS_PIVOT ".pvdb");
114 if (ret) {
220 int ret; local in function:find_dst
249 int ret; local in function:find_best_pivot_lookup
294 int ret; local in function:find_best_pivot
320 int ret; local in function:get_none
346 int ret; local in function:_citrus_csmapper_open
    [all...]
  /src/common/dist/zlib/examples/
fitblk.c 75 int ret, flush; local in function:partcompress
86 ret = deflate(def, flush);
87 assert(ret != Z_STREAM_ERROR);
89 return ret;
98 int ret, flush; local in function:recompress
106 ret = inflate(inf, Z_NO_FLUSH);
107 assert(ret != Z_STREAM_ERROR && ret != Z_DATA_ERROR &&
108 ret != Z_NEED_DICT);
109 if (ret == Z_MEM_ERROR
129 int ret; \/* return code *\/ local in function:main
    [all...]
  /src/lib/csu/arch/i386/
crtn.S 42 ret
46 ret
  /src/lib/csu/arch/sparc/
crtn.S 68 ret
73 ret
  /src/lib/csu/arch/sparc64/
crtn.S 68 ret
73 ret
  /src/lib/csu/arch/x86_64/
crtn.S 42 ret
46 ret
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/volt/
nouveau_nvkm_subdev_volt_nv40.c 41 int ret; local in function:nv40_volt_new
43 ret = nvkm_volt_new_(&nv40_volt, device, index, &volt);
45 if (ret)
46 return ret;
  /src/lib/libcurses/
scanw.c 57 int ret; local in function:scanw
60 ret = vw_scanw(stdscr, fmt, ap);
62 return ret;
72 int ret; local in function:wscanw
78 ret = vw_scanw(win, fmt, ap);
80 return ret;
91 int ret; local in function:mvscanw
96 ret = vw_scanw(stdscr, fmt, ap);
98 return ret;
105 int ret; local in function:mvwscanw
122 int ret; local in function:vw_scanw
    [all...]
  /src/sys/arch/i386/include/xen/
hypercalls.h 78 int ret; local in function:HYPERVISOR_set_trap_table
82 _harg("=a" (ret), "=b" (ign1)));
84 return ret;
90 int ret; local in function:HYPERVISOR_set_gdt
94 _harg("=a" (ret), "=b" (ign1), "=c" (ign2)));
96 return ret;
102 int ret; local in function:HYPERVISOR_stack_switch
106 _harg("=a" (ret), "=b" (ign1), "=c" (ign2)));
108 return ret;
116 int ret; local in function:HYPERVISOR_set_callbacks
131 int ret; local in function:HYPERVISOR_dom0_op
145 int ret; local in function:HYPERVISOR_set_debugreg
157 unsigned long ret; local in function:HYPERVISOR_get_debugreg
171 int ret; local in function:HYPERVISOR_machine_check
184 int ret; local in function:HYPERVISOR_hvm_op
197 int ret; local in function:HYPERVISOR_mmu_update
211 int ret; local in function:HYPERVISOR_mmuext_op
224 long ret; local in function:HYPERVISOR_fpu_taskswitch
236 int ret; local in function:HYPERVISOR_update_descriptor
251 int ret; local in function:HYPERVISOR_memory_op
265 int ret; local in function:HYPERVISOR_update_va_mapping
289 int ret; local in function:HYPERVISOR_update_va_mapping_otherdomain
308 int ret; local in function:HYPERVISOR_xen_version
320 int ret; local in function:HYPERVISOR_grant_table_op
334 long ret; local in function:HYPERVISOR_vcpu_op
347 long ret; local in function:HYPERVISOR_yield
359 long ret; local in function:HYPERVISOR_block
371 long ret; local in function:HYPERVISOR_shutdown
396 long ret; local in function:HYPERVISOR_crash
420 long ret; local in function:HYPERVISOR_reboot
444 long ret; local in function:HYPERVISOR_suspend
468 long ret; local in function:HYPERVISOR_set_timer_op
483 int ret; local in function:HYPERVISOR_platform_op
496 int ret; local in function:HYPERVISOR_multicall
510 int ret; local in function:HYPERVISOR_event_channel_op
528 int ret; local in function:HYPERVISOR_console_io
541 int ret; local in function:HYPERVISOR_physdev_op
553 int ret; local in function:HYPERVISOR_vm_assist
565 int ret; local in function:HYPERVISOR_sysctl
    [all...]
  /src/lib/libc/iconv/
iconv.c 61 int ret; local in function:__weak_alias
64 ret = _citrus_iconv_open(&handle, _PATH_ICONV, in, out);
65 if (ret) {
66 errno = ret == ENOENT? EINVAL : ret;
90 size_t ret; local in function:iconv
99 (const char **)(void *)in, szin, out, szout, 0, &ret);
102 ret = (size_t)-1;
105 return (ret);
113 size_t ret; local in function:__iconv
136 int ret; local in function:__iconv_get_list
    [all...]

Completed in 17 milliseconds

1 2 3 4 5 6 7 8 91011>>