Searched refs:res (Results 1 - 25 of 814) sorted by relevance

1234567891011>>

/src/tests/fs/common/
H A Dfstest_ext2fs.c60 int res; local in function:ext2fs_fstest_newfs
67 res = system(cmd);
68 if (res != 0)
69 return res;
71 res = rump_init();
72 if (res != 0)
73 return res;
83 res = rump_pub_etfs_register(args->ta_devpath, image, RUMP_ETFS_BLK);
84 if (res != 0) {
86 return res;
98 int res; local in function:ext2fs_fstest_delfs
117 int res; local in function:ext2fs_fstest_mount
132 int res; local in function:ext2fs_fstest_unmount
[all...]
H A Dfstest_msdosfs.c60 int res; local in function:msdosfs_fstest_newfs
67 res = system(cmd);
68 if (res != 0)
69 return res;
71 res = rump_init();
72 if (res != 0)
73 return res;
84 res = rump_pub_etfs_register(args->ta_devpath, image, RUMP_ETFS_BLK);
85 if (res != 0) {
87 return res;
99 int res; local in function:msdosfs_fstest_delfs
118 int res; local in function:msdosfs_fstest_mount
133 int res; local in function:msdosfs_fstest_unmount
[all...]
H A Dfstest_sysvbfs.c60 int res; local in function:sysvbfs_fstest_newfs
67 res = system(cmd);
68 if (res != 0)
69 return res;
71 res = rump_init();
72 if (res != 0)
73 return res;
83 res = rump_pub_etfs_register(args->ta_devpath, image, RUMP_ETFS_BLK);
84 if (res != 0) {
86 return res;
98 int res; local in function:sysvbfs_fstest_delfs
117 int res; local in function:sysvbfs_fstest_mount
132 int res; local in function:sysvbfs_fstest_unmount
[all...]
H A Dfstest_v7fs.c60 int res; local in function:v7fs_fstest_newfs
67 res = system(cmd);
68 if (res != 0)
69 return res;
71 res = rump_init();
72 if (res != 0)
73 return res;
84 res = rump_pub_etfs_register(args->ta_devpath, image, RUMP_ETFS_BLK);
85 if (res != 0) {
87 return res;
99 int res; local in function:v7fs_fstest_delfs
118 int res; local in function:v7fs_fstest_mount
133 int res; local in function:v7fs_fstest_unmount
[all...]
H A Dfstest_ffs.c61 int res; local in function:ffs_fstest_newfs
71 res = system(cmd);
73 if (res != 0)
74 return res;
76 res = rump_init();
77 if (res != 0)
78 return res;
88 res = rump_pub_etfs_register(args->ta_devpath, image, RUMP_ETFS_BLK);
89 if (res != 0) {
91 return res;
104 int res; local in function:ffs_fstest_delfs
126 int res; local in function:ffs_fstest_mount
148 int res; local in function:ffs_fstest_unmount
[all...]
H A Dfstest_udf.c61 int res; local in function:udf_fstest_newfs
74 res = system(cmd);
76 if (res != 0)
77 return res;
79 res = rump_init();
80 if (res != 0)
81 return res;
92 res = rump_pub_etfs_register(args->ta_devpath, image, RUMP_ETFS_BLK);
93 if (res != 0) {
95 return res;
108 int res; local in function:udf_fstest_delfs
130 int res; local in function:udf_fstest_mount
145 int res; local in function:udf_fstest_unmount
[all...]
H A Dfstest_tmpfs.c57 int res; local in function:tmpfs_fstest_newfs
60 res = rump_init();
61 if (res != 0)
62 return res;
90 int res; local in function:tmpfs_fstest_mount
93 res = rump_sys_mkdir(path, 0777);
94 if (res == -1)
95 return res;
97 res = rump_sys_mount(MOUNT_TMPFS, path, flags, &args->ta_uargs,
99 return res;
105 int res; local in function:tmpfs_fstest_unmount
[all...]
H A Dfstest_lfs.c70 int res; local in function:lfs_fstest_newfs
77 res = system(cmd);
78 if (res != 0)
79 return res;
81 res = rump_init();
82 if (res != 0)
83 return res;
95 res = rump_pub_etfs_register(args->ta_devpath, image, RUMP_ETFS_BLK);
96 if (res != 0) {
98 return res;
110 int res; local in function:lfs_fstest_delfs
168 int res; local in function:lfs_fstest_mount
215 int res; local in function:lfs_fstest_unmount
[all...]
H A Dfstest_rumpfs.c52 int res; local in function:rumpfs_fstest_newfs
55 res = setenv("RUMP_MEMLIMIT", tmp, 0);
56 if (res == -1)
57 return res;
72 int res; local in function:rumpfs_fstest_mount
74 res = rump_sys_mkdir(path, 0777);
75 if (res == -1)
76 return res;
84 int res; local in function:rumpfs_fstest_unmount
86 res
[all...]
/src/lib/libc/uuid/
H A Duuid_compare.c53 int res; local in function:uuid_compare
67 res = (int)((int64_t)a->time_low - (int64_t)b->time_low);
68 if (res)
69 return ((res < 0) ? -1 : 1);
70 res = (int)a->time_mid - (int)b->time_mid;
71 if (res)
72 return ((res < 0) ? -1 : 1);
73 res = (int)a->time_hi_and_version - (int)b->time_hi_and_version;
74 if (res)
75 return ((res <
[all...]
/src/sys/external/bsd/drm2/dist/drm/vmwgfx/
H A Dvmwgfx_resource_priv.h56 void (*res_free) (struct vmw_resource *res);
93 int (*create) (struct vmw_resource *res);
94 int (*destroy) (struct vmw_resource *res);
95 int (*bind) (struct vmw_resource *res,
97 int (*unbind) (struct vmw_resource *res,
100 void (*commit_notify)(struct vmw_resource *res,
102 int (*dirty_alloc)(struct vmw_resource *res);
103 void (*dirty_free)(struct vmw_resource *res);
104 int (*dirty_sync)(struct vmw_resource *res);
105 void (*dirty_range_add)(struct vmw_resource *res, size_
135 struct vmw_resource res; member in struct:vmw_simple_resource
[all...]
H A Dvmwgfx_resource.c43 * @res: The resource
45 void vmw_resource_mob_attach(struct vmw_resource *res) argument
47 struct vmw_buffer_object *backup = res->backup;
50 dma_resv_assert_held(res->backup->base.base.resv);
51 res->used_prio = (res->res_dirty) ? res->func->dirty_prio :
52 res->func->prio;
62 new = (res->backup_offset < this->backup_offset) ?
66 rb_link_node(&res
78 vmw_resource_mob_detach(struct vmw_resource * res) argument
91 vmw_resource_reference(struct vmw_resource * res) argument
98 vmw_resource_reference_unless_doomed(struct vmw_resource * res) argument
110 vmw_resource_release_id(struct vmw_resource * res) argument
124 struct vmw_resource *res = local in function:vmw_resource_release
176 struct vmw_resource *res = *p_res; local in function:vmw_resource_unreference
191 vmw_resource_alloc_id(struct vmw_resource * res) argument
222 vmw_resource_init(struct vmw_private * dev_priv,struct vmw_resource * res,bool delay_id,void (* res_free)(struct vmw_resource * res),const struct vmw_res_func * func) argument
272 struct vmw_resource *res; local in function:vmw_user_resource_lookup_handle
340 struct vmw_resource *res; local in function:vmw_user_lookup_handle
365 vmw_resource_buf_alloc(struct vmw_resource * res,bool interruptible) argument
406 vmw_resource_do_validate(struct vmw_resource * res,struct ttm_validate_buffer * val_buf,bool dirtying) argument
486 vmw_resource_unreserve(struct vmw_resource * res,bool dirty_set,bool dirty,bool switch_backup,struct vmw_buffer_object * new_backup,unsigned long new_backup_offset) argument
551 vmw_resource_check_buffer(struct ww_acquire_ctx * ticket,struct vmw_resource * res,bool interruptible,struct ttm_validate_buffer * val_buf) argument
610 vmw_resource_reserve(struct vmw_resource * res,bool interruptible,bool no_backup) argument
665 vmw_resource_do_evict(struct ww_acquire_ctx * ticket,struct vmw_resource * res,bool interruptible) argument
712 vmw_resource_validate(struct vmw_resource * res,bool intr,bool dirtying) argument
801 struct vmw_resource *res = local in function:vmw_resource_unbind_list
911 vmw_resource_needs_backup(const struct vmw_resource * res) argument
997 vmw_resource_pin(struct vmw_resource * res,bool interruptible) argument
1055 vmw_resource_unpin(struct vmw_resource * res) argument
1086 vmw_res_type(const struct vmw_resource * res) argument
1098 vmw_resource_dirty_update(struct vmw_resource * res,pgoff_t start,pgoff_t end) argument
[all...]
/src/usr.sbin/rpc.lockd/
H A Dtest.c26 static nlm_testres res; local in function:nlm_test_1
28 (void)memset(&res, 0, sizeof(res));
30 &res, TIMEOUT);
33 return &res;
41 static nlm_res res; local in function:nlm_lock_1
43 (void)memset(&res, 0, sizeof(res));
45 &res, TIMEOUT);
51 return &res;
59 static nlm_res res; local in function:nlm_cancel_1
75 static nlm_res res; local in function:nlm_unlock_1
91 static nlm_res res; local in function:nlm_granted_1
107 static char res; local in function:nlm_test_msg_1
123 static char res; local in function:nlm_lock_msg_1
140 static char res; local in function:nlm_cancel_msg_1
156 static char res; local in function:nlm_unlock_msg_1
172 static char res; local in function:nlm_granted_msg_1
188 static char res; local in function:nlm_test_res_1
204 static char res; local in function:nlm_lock_res_1
220 static char res; local in function:nlm_cancel_res_1
236 static char res; local in function:nlm_unlock_res_1
252 static char res; local in function:nlm_granted_res_1
268 static nlm_shareres res; local in function:nlm_share_3
284 static nlm_shareres res; local in function:nlm_unshare_3
300 static nlm_res res; local in function:nlm_nm_lock_3
316 static char res; local in function:nlm_free_all_3
[all...]
/src/sys/external/bsd/compiler_rt/dist/include/sanitizer/
H A Dnetbsd_syscall_hooks.h18 // long long res = syscall(SYS_getfoo, ...args...);
19 // __sanitizer_syscall_post_getfoo(res, ...args...);
37 #define __sanitizer_syscall_post_syscall(res, code, arg0, arg1, arg2, arg3, \
40 res, (long long)(code), (long long)(arg0), (long long)(arg1), \
45 #define __sanitizer_syscall_post_exit(res, rval) \
46 __sanitizer_syscall_post_impl_exit(res, (long long)(rval))
48 #define __sanitizer_syscall_post_fork(res) \
49 __sanitizer_syscall_post_impl_fork(res)
53 #define __sanitizer_syscall_post_read(res, fd, buf, nbyte) \
54 __sanitizer_syscall_post_impl_read(res, (lon
[all...]
H A Dlinux_syscall_hooks.h18 // long res = syscall(__NR_getfoo, ...args...);
19 // __sanitizer_syscall_post_getfoo(res, ...args...);
26 #define __sanitizer_syscall_post_time(res, tloc) \
27 __sanitizer_syscall_post_impl_time(res, (long)(tloc))
30 #define __sanitizer_syscall_post_stime(res, tptr) \
31 __sanitizer_syscall_post_impl_stime(res, (long)(tptr))
34 #define __sanitizer_syscall_post_gettimeofday(res, tv, tz) \
35 __sanitizer_syscall_post_impl_gettimeofday(res, (long)(tv), (long)(tz))
38 #define __sanitizer_syscall_post_settimeofday(res, tv, tz) \
39 __sanitizer_syscall_post_impl_settimeofday(res, (lon
[all...]
/src/common/lib/libc/quad/
H A Dnegdi2.c53 union uu aa, res; local in function:__negdi2
56 res.ul[L] = -aa.ul[L];
57 res.ul[H] = -aa.ul[H] - (res.ul[L] > 0);
58 return (res.q);
/src/usr.sbin/rpc.statd/
H A Dtest.c19 static struct sm_stat_res res; local in function:sm_stat_1
21 bzero((char *) &res, sizeof(res));
23 &res, TIMEOUT) != RPC_SUCCESS)
25 return (&res);
32 static struct sm_stat_res res; local in function:sm_mon_1
34 bzero((char *) &res, sizeof(res));
36 &res, TIMEOUT) != RPC_SUCCESS)
38 return (&res);
45 static struct sm_stat res; local in function:sm_unmon_1
58 static struct sm_stat res; local in function:sm_unmon_all_1
71 static char res; local in function:sm_simu_crash_1
106 struct sm_stat_res *res; local in function:main
[all...]
/src/sys/external/isc/libsodium/dist/test/default/
H A DMakefile.am81 aead_aes256gcm.res \
82 aead_chacha20poly1305.res \
83 aead_xchacha20poly1305.res \
84 auth.res \
85 auth2.res \
86 auth3.res \
87 auth5.res \
88 auth6.res \
89 auth7.res \
90 box.res \
[all...]
/src/tests/fs/vfs/
H A Dt_rmdirrace.c68 int res, fd, quit; local in function:race
77 res = rump_sys_chdir(path);
78 if (res == -1)
83 res = pthread_create(&th1, NULL, func1, &quit);
84 if (res != 0)
86 res = pthread_create(&th2, NULL, func2, &quit);
87 if (res != 0)
94 res = pthread_join(th2, NULL);
95 if (res != 0)
97 res
[all...]
/src/sys/dev/acpi/
H A Dacpi_resource.c92 acpi_resource_parse_callback(ACPI_RESOURCE *res, void *context) argument
102 switch (res->Type) {
109 res->Data.FixedIo.Address,
110 res->Data.FixedIo.AddressLength));
113 res->Data.FixedIo.Address,
114 res->Data.FixedIo.AddressLength);
118 if (res->Data.Io.Minimum ==
119 res->Data.Io.Maximum) {
122 res->Data.Io.Minimum,
123 res
484 acpi_resource_print(device_t dev,struct acpi_resources * res) argument
564 acpi_resource_cleanup(struct acpi_resources * res) argument
613 acpi_res_io(struct acpi_resources * res,int idx) argument
625 acpi_res_iorange(struct acpi_resources * res,int idx) argument
637 acpi_res_mem(struct acpi_resources * res,int idx) argument
649 acpi_res_memrange(struct acpi_resources * res,int idx) argument
661 acpi_res_irq(struct acpi_resources * res,int idx) argument
673 acpi_res_drq(struct acpi_resources * res,int idx) argument
744 struct acpi_resources *res = arg; local in function:acpi_res_parse_init
770 struct acpi_resources *res = context; local in function:acpi_res_parse_fini
780 struct acpi_resources *res = context; local in function:acpi_res_parse_ioport
834 struct acpi_resources *res = context; local in function:acpi_res_parse_iorange
858 struct acpi_resources *res = context; local in function:acpi_res_parse_memory
881 struct acpi_resources *res = context; local in function:acpi_res_parse_memrange
904 struct acpi_resources *res = context; local in function:acpi_res_parse_irq
925 struct acpi_resources *res = context; local in function:acpi_res_parse_drq
[all...]
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
H A Dsanitizer_mac_libcdep.cc24 void *res = MmapFixedNoAccess(max_address, size_to_mmap, "high gap"); local in function:__sanitizer::RestrictMemoryToMaxAddress
25 CHECK(res != MAP_FAILED);
/src/lib/libc/arch/sparc64/gen/
H A Dfpgetsticky.c30 fp_except res; local in function:fpgetsticky
33 res = (x >> 5) & 0x1f;
36 res |= _softfloat_float_exception_flags;
39 return res;
/src/sys/arch/sbmips/stand/common/
H A Dcfe.c46 int res; local in function:getchar
48 while ((res = cfe_read(conhandle,&ch,1)) == 0) ; /* null loop */
49 return (res < 0) ? -1 : ch;
/src/sys/arch/evbmips/stand/sbmips/common/
H A Dcfe.c46 int res; local in function:getchar
48 while ((res = cfe_read(conhandle,&ch,1)) == 0) ; /* null loop */
49 return (res < 0) ? -1 : ch;
/src/lib/librefuse/refuse/
H A Dlegacy.c44 int res = fuse_invalidate_path(fuse, path); local in function:fuse_invalidate
46 switch (res) {
52 return res;

Completed in 15 milliseconds

1234567891011>>