Home
last modified time | relevance | path

Searched defs:req (Results 1 – 25 of 735) sorted by relevance

12345678910>>...30

/third_party/lzma/Asm/arm64/
D7zAsm.S41 .macro p2_add reg:req, param:req
45 .macro p2_sub reg:req, param:req
49 .macro p2_sub_s reg:req, param:req
53 .macro p2_and reg:req, param:req
57 .macro xor reg:req, param:req
61 .macro or reg:req, param:req
65 .macro shl reg:req, param:req
69 .macro shr reg:req, param:req
73 .macro sar reg:req, param:req
77 .macro p1_neg reg:req
[all …]
DLzmaDecOpt.S41 .macro PLOAD dest:req, mem:req
44 .macro PLOAD_PREINDEXED dest:req, mem:req, offset:req
47 .macro PLOAD_2 dest:req, mem1:req, mem2:req
50 .macro PLOAD_LSL dest:req, mem1:req, mem2:req
53 .macro PSTORE src:req, mem:req
56 .macro PSTORE_2 src:req, mem1:req, mem2:req
59 .macro PSTORE_LSL src:req, mem1:req, mem2:req
62 .macro PSTORE_LSL_M1 src:req, mem1:req, mem2:req, temp_reg:req
70 .macro PLOAD dest:req, mem:req
73 .macro PLOAD_PREINDEXED dest:req, mem:req, offset:req
[all …]
/third_party/libuv/src/win/
Dreq-inl.h31 #define SET_REQ_STATUS(req, status) \ argument
34 #define SET_REQ_ERROR(req, error) \ argument
40 #define SET_REQ_SUCCESS(req) \ argument
43 #define GET_REQ_STATUS(req) \ argument
46 #define REQ_SUCCESS(req) \ argument
49 #define GET_REQ_ERROR(req) \ argument
52 #define GET_REQ_SOCK_ERROR(req) \ argument
56 #define REGISTER_HANDLE_REQ(loop, handle, req) \ argument
62 #define UNREGISTER_HANDLE_REQ(loop, handle, req) \ argument
76 #define POST_COMPLETION_FOR_REQ(loop, req) \ argument
[all …]
Dfs.c75 #define SET_REQ_RESULT(req, result_value) \ argument
81 #define SET_REQ_WIN32_ERROR(req, sys_errno) \ argument
87 #define SET_REQ_UV_ERROR(req, uv_errno, sys_errno) \ argument
93 #define VERIFY_FD(fd, req) \ argument
287 INLINE static int fs__capture_path(uv_fs_t* req, const char* path, in fs__capture_path()
362 INLINE static void uv__fs_req_init(uv_loop_t* loop, uv_fs_t* req, in uv__fs_req_init()
378 void fs__open(uv_fs_t* req) { in fs__open()
633 void fs__close(uv_fs_t* req) { in fs__close()
683 void fs__read_filemap(uv_fs_t* req, struct uv__fd_info_s* fd_info) { in fs__read_filemap()
780 void fs__read(uv_fs_t* req) { in fs__read()
[all …]
/third_party/openssl/crypto/x509/
Dx509_req.c63 EVP_PKEY *X509_REQ_get_pubkey(X509_REQ *req) in X509_REQ_get_pubkey()
70 EVP_PKEY *X509_REQ_get0_pubkey(X509_REQ *req) in X509_REQ_get0_pubkey()
77 X509_PUBKEY *X509_REQ_get_X509_PUBKEY(X509_REQ *req) in X509_REQ_get_X509_PUBKEY()
170 int X509_REQ_add_extensions_nid(X509_REQ *req, in X509_REQ_add_extensions_nid()
188 int X509_REQ_add_extensions(X509_REQ *req, const STACK_OF(X509_EXTENSION) *exts) in X509_REQ_add_extensions()
195 int X509_REQ_get_attr_count(const X509_REQ *req) in X509_REQ_get_attr_count()
200 int X509_REQ_get_attr_by_NID(const X509_REQ *req, int nid, int lastpos) in X509_REQ_get_attr_by_NID()
205 int X509_REQ_get_attr_by_OBJ(const X509_REQ *req, const ASN1_OBJECT *obj, in X509_REQ_get_attr_by_OBJ()
211 X509_ATTRIBUTE *X509_REQ_get_attr(const X509_REQ *req, int loc) in X509_REQ_get_attr()
216 X509_ATTRIBUTE *X509_REQ_delete_attr(X509_REQ *req, int loc) in X509_REQ_delete_attr()
[all …]
/third_party/ntfs-3g/libfuse-lite/
Dfuse_lowlevel.c124 static void list_init_req(struct fuse_req *req) in list_init_req()
130 static void list_del_req(struct fuse_req *req) in list_del_req()
138 static void list_add_req(struct fuse_req *req, struct fuse_req *next) in list_add_req()
147 static void destroy_req(fuse_req_t req) in destroy_req()
153 static void free_req(fuse_req_t req) in free_req()
171 static int send_reply_iov(fuse_req_t req, int error, struct iovec *iov, in send_reply_iov()
198 static int send_reply(fuse_req_t req, int error, const void *arg, in send_reply()
257 size_t fuse_add_direntry(fuse_req_t req, char *buf, size_t bufsize, in fuse_add_direntry()
282 static int send_reply_ok(fuse_req_t req, const void *arg, size_t argsize) in send_reply_ok()
287 int fuse_reply_err(fuse_req_t req, int err) in fuse_reply_err()
[all …]
/third_party/libuv/src/unix/
Dfs.c201 static ssize_t uv__fs_fsync(uv_fs_t* req) { in uv__fs_fsync()
225 static ssize_t uv__fs_fdatasync(uv_fs_t* req) { in uv__fs_fdatasync()
267 static ssize_t uv__fs_futime(uv_fs_t* req) { in uv__fs_futime()
305 static ssize_t uv__fs_mkdtemp(uv_fs_t* req) { in uv__fs_mkdtemp()
329 static int uv__fs_mkstemp(uv_fs_t* req) { in uv__fs_mkstemp()
401 static ssize_t uv__fs_open(uv_fs_t* req) { in uv__fs_open()
430 static ssize_t uv__fs_read(uv_fs_t* req) { in uv__fs_read()
494 static ssize_t uv__fs_scandir(uv_fs_t* req) { in uv__fs_scandir()
519 static int uv__fs_opendir(uv_fs_t* req) { in uv__fs_opendir()
539 static int uv__fs_readdir(uv_fs_t* req) { in uv__fs_readdir()
[all …]
/third_party/libuv/test/
Dtest-fs.c172 uv_fs_t req; in check_permission() local
194 static void dummy_cb(uv_fs_t* req) { in dummy_cb()
200 static void link_cb(uv_fs_t* req) { in link_cb()
208 static void symlink_cb(uv_fs_t* req) { in symlink_cb()
215 static void readlink_cb(uv_fs_t* req) { in readlink_cb()
224 static void realpath_cb(uv_fs_t* req) { in realpath_cb()
243 static void access_cb(uv_fs_t* req) { in access_cb()
250 static void fchmod_cb(uv_fs_t* req) { in fchmod_cb()
259 static void chmod_cb(uv_fs_t* req) { in chmod_cb()
268 static void fchown_cb(uv_fs_t* req) { in fchown_cb()
[all …]
Dtest-threadpool-cancel.c57 static void work_cb(uv_work_t* req) { in work_cb()
62 static void done_cb(uv_work_t* req, int status) { in done_cb()
94 static int known_broken(uv_req_t* req) { in known_broken()
125 static void fs_cb(uv_fs_t* req) { in fs_cb()
133 static void getaddrinfo_cb(uv_getaddrinfo_t* req, in getaddrinfo_cb()
152 static void work2_cb(uv_work_t* req) { in work2_cb()
157 static void done2_cb(uv_work_t* req, int status) { in done2_cb()
165 uv_req_t* req; in timer_cb() local
181 static void nop_done_cb(uv_work_t* req, int status) { in nop_done_cb()
187 static void nop_random_cb(uv_random_t* req, int status, void* buf, size_t len) { in nop_random_cb()
[all …]
Dtest-fs-readdir.c37 uv_fs_t req; in cleanup_test_files() local
49 static void empty_closedir_cb(uv_fs_t* req) { in empty_closedir_cb()
57 static void empty_readdir_cb(uv_fs_t* req) { in empty_readdir_cb()
73 static void empty_opendir_cb(uv_fs_t* req) { in empty_opendir_cb()
170 static void non_existing_opendir_cb(uv_fs_t* req) { in non_existing_opendir_cb()
222 static void file_opendir_cb(uv_fs_t* req) { in file_opendir_cb()
275 static void non_empty_closedir_cb(uv_fs_t* req) { in non_empty_closedir_cb()
282 static void non_empty_readdir_cb(uv_fs_t* req) { in non_empty_readdir_cb()
322 static void non_empty_opendir_cb(uv_fs_t* req) { in non_empty_opendir_cb()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/
Dhttp_server.c44 struct http_request *req = cookie; in http_request_cb() local
64 struct http_request *req; in http_request_init() local
91 void http_request_deinit(struct http_request *req) in http_request_deinit()
121 static void http_request_free_all(struct http_request *req) in http_request_free_all()
132 void http_request_send(struct http_request *req, struct wpabuf *resp) in http_request_send()
155 void http_request_send_and_deinit(struct http_request *req, in http_request_send_and_deinit()
163 enum httpread_hdr_type http_request_get_type(struct http_request *req) in http_request_get_type()
169 char * http_request_get_uri(struct http_request *req) in http_request_get_uri()
175 char * http_request_get_hdr(struct http_request *req) in http_request_get_hdr()
181 char * http_request_get_data(struct http_request *req) in http_request_get_data()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/
Dhttp_server.c44 struct http_request *req = cookie; in http_request_cb() local
64 struct http_request *req; in http_request_init() local
91 void http_request_deinit(struct http_request *req) in http_request_deinit()
121 static void http_request_free_all(struct http_request *req) in http_request_free_all()
132 void http_request_send(struct http_request *req, struct wpabuf *resp) in http_request_send()
155 void http_request_send_and_deinit(struct http_request *req, in http_request_send_and_deinit()
163 enum httpread_hdr_type http_request_get_type(struct http_request *req) in http_request_get_type()
169 char * http_request_get_uri(struct http_request *req) in http_request_get_uri()
175 char * http_request_get_hdr(struct http_request *req) in http_request_get_hdr()
181 char * http_request_get_data(struct http_request *req) in http_request_get_data()
[all …]
/third_party/libfuse/lib/
Dfuse_lowlevel.c101 static void list_init_req(struct fuse_req *req) in list_init_req()
107 static void list_del_req(struct fuse_req *req) in list_del_req()
115 static void list_add_req(struct fuse_req *req, struct fuse_req *next) in list_add_req()
124 static void destroy_req(fuse_req_t req) in destroy_req()
131 void fuse_free_req(fuse_req_t req) in fuse_free_req()
150 struct fuse_req *req; in fuse_ll_alloc_req() local
211 int fuse_send_reply_iov_nofree(fuse_req_t req, int error, struct iovec *iov,
235 static int send_reply_iov(fuse_req_t req, int error, struct iovec *iov,
245 static int send_reply(fuse_req_t req, int error, const void *arg,
258 int fuse_reply_iov(fuse_req_t req, const struct iovec *iov, int count)
[all …]
/third_party/libuv/src/
Duv-data-getter-setters.c65 uv_req_type uv_req_get_type(const uv_req_t* req) { in uv_req_get_type()
69 void* uv_req_get_data(const uv_req_t* req) { in uv_req_get_data()
73 void uv_req_set_data(uv_req_t* req, void* data) { in uv_req_set_data()
93 uv_fs_type uv_fs_get_type(const uv_fs_t* req) { in uv_fs_get_type()
97 ssize_t uv_fs_get_result(const uv_fs_t* req) { in uv_fs_get_result()
101 void* uv_fs_get_ptr(const uv_fs_t* req) { in uv_fs_get_ptr()
105 const char* uv_fs_get_path(const uv_fs_t* req) { in uv_fs_get_path()
109 uv_stat_t* uv_fs_get_statbuf(uv_fs_t* req) { in uv_fs_get_statbuf()
/third_party/backends/backend/
Dgt68xx_gt6816.c53 GT68xx_Packet req; in gt6816_check_firmware() local
129 GT68xx_Packet req; in gt6816_get_power_status() local
150 GT68xx_Packet req; in gt6816_get_ta_status() local
172 GT68xx_Packet req; in gt6816_lamp_control() local
191 GT68xx_Packet req; in gt6816_is_moving() local
216 GT68xx_Packet req; in gt6816_carriage_home() local
229 GT68xx_Packet req; in gt6816_stop_scan() local
242 GT68xx_Packet req; in gt6816_document_present() local
Dgt68xx_gt6801.c55 GT68xx_Packet req; in gt6801_check_firmware() local
77 GT68xx_Packet req; in gt6801_check_plustek_firmware() local
178 GT68xx_Packet req; in gt6801_get_power_status() local
203 GT68xx_Packet req; in gt6801_lamp_control() local
234 GT68xx_Packet req; in gt6801_carriage_home() local
266 GT68xx_Packet req; in gt6801_stop_scan() local
/third_party/libfuse/example/
Dpassthrough_ll.c145 static struct lo_data *lo_data(fuse_req_t req) in lo_data()
150 static struct lo_inode *lo_inode(fuse_req_t req, fuse_ino_t ino) in lo_inode()
158 static int lo_fd(fuse_req_t req, fuse_ino_t ino) in lo_fd()
163 static bool lo_debug(fuse_req_t req) in lo_debug()
200 static void lo_getattr(fuse_req_t req, fuse_ino_t ino, in lo_getattr()
216 static void lo_setattr(fuse_req_t req, fuse_ino_t ino, struct stat *attr, in lo_setattr()
309 static int lo_do_lookup(fuse_req_t req, fuse_ino_t parent, const char *name, in lo_do_lookup()
371 static void lo_lookup(fuse_req_t req, fuse_ino_t parent, const char *name) in lo_lookup()
387 static void lo_mknod_symlink(fuse_req_t req, fuse_ino_t parent, in lo_mknod_symlink()
417 static void lo_mknod(fuse_req_t req, fuse_ino_t parent, in lo_mknod()
[all …]
Dhello_ll.c56 static void hello_ll_getattr(fuse_req_t req, fuse_ino_t ino, in hello_ll_getattr()
70 static void hello_ll_lookup(fuse_req_t req, fuse_ino_t parent, const char *name) in hello_ll_lookup()
92 static void dirbuf_add(fuse_req_t req, struct dirbuf *b, const char *name, in dirbuf_add()
107 static int reply_buf_limited(fuse_req_t req, const char *buf, size_t bufsize, in reply_buf_limited()
117 static void hello_ll_readdir(fuse_req_t req, fuse_ino_t ino, size_t size, in hello_ll_readdir()
136 static void hello_ll_open(fuse_req_t req, fuse_ino_t ino, in hello_ll_open()
147 static void hello_ll_read(fuse_req_t req, fuse_ino_t ino, size_t size, in hello_ll_read()
156 static void hello_ll_getxattr(fuse_req_t req, fuse_ino_t ino, const char *name, in hello_ll_getxattr()
172 static void hello_ll_setxattr(fuse_req_t req, fuse_ino_t ino, const char *name, in hello_ll_setxattr()
191 static void hello_ll_removexattr(fuse_req_t req, fuse_ino_t ino, const char *name) in hello_ll_removexattr()
Dpassthrough_hp.cc217 static void sfs_getattr(fuse_req_t req, fuse_ino_t ino, fuse_file_info *fi) { in sfs_getattr()
231 static void do_setattr(fuse_req_t req, fuse_ino_t ino, struct stat *attr, in do_setattr()
307 static void sfs_setattr(fuse_req_t req, fuse_ino_t ino, struct stat *attr, in sfs_setattr()
406 static void sfs_lookup(fuse_req_t req, fuse_ino_t parent, const char *name) { in sfs_lookup()
424 static void mknod_symlink(fuse_req_t req, fuse_ino_t parent, in mknod_symlink()
456 static void sfs_mknod(fuse_req_t req, fuse_ino_t parent, const char *name, in sfs_mknod()
462 static void sfs_mkdir(fuse_req_t req, fuse_ino_t parent, const char *name, in sfs_mkdir()
468 static void sfs_symlink(fuse_req_t req, const char *link, fuse_ino_t parent, in sfs_symlink()
474 static void sfs_link(fuse_req_t req, fuse_ino_t ino, fuse_ino_t parent, in sfs_link()
511 static void sfs_rmdir(fuse_req_t req, fuse_ino_t parent, const char *name) { in sfs_rmdir()
[all …]
/third_party/libdrm/nouveau/
Dabi16.c39 struct drm_nouveau_channel_alloc req = { in abi16_chan_nv04() local
62 struct drm_nouveau_channel_alloc req = {}; in abi16_chan_nvc0() local
83 struct drm_nouveau_channel_alloc req = {}; in abi16_chan_nve0() local
109 struct drm_nouveau_grobj_alloc req = { in abi16_engobj() local
151 struct drm_nouveau_notifierobj_alloc req = { in abi16_ntfy() local
222 struct drm_nouveau_channel_free req; in abi16_delete() local
227 struct drm_nouveau_gpuobj_free req; in abi16_delete() local
312 struct drm_nouveau_gem_new req = {}; in abi16_bo_init() local
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/Debug/
DServer.cpp73 session->registerHandler([](const dap::DisconnectRequest &req) { in Impl()
78 session->registerHandler([&](const dap::InitializeRequest &req) { in Impl()
94 session->registerHandler([](const dap::SetExceptionBreakpointsRequest &req) { in Impl()
101 [this](const dap::SetFunctionBreakpointsRequest &req) { in Impl()
130 -> dap::ResponseOrError<dap::SetBreakpointsResponse> { in Impl()
186 session->registerHandler([this](const dap::ThreadsRequest &req) { in Impl()
215 -> dap::ResponseOrError<dap::StackTraceResponse> { in Impl()
249 -> dap::ResponseOrError<dap::ScopesResponse> { in Impl()
269 -> dap::ResponseOrError<dap::VariablesResponse> { in Impl()
299 -> dap::ResponseOrError<dap::SourceResponse> { in Impl()
[all …]
/third_party/lzma/Asm/x86/
DXzCrc64Opt.asm17 CRC_XOR macro dest:req, src:req, t:req
31 MY_PROLOG macro crc_end:req
61 MY_EPILOG macro crc_end:req
139 CRC macro op0:req, op1:req, dest0:req, dest1:req, src:req, t:req
144 CRC_XOR macro dest0:req, dest1:req, src:req, t:req
160 MY_PROLOG macro crc_end:req
195 MY_EPILOG macro crc_end:req
/third_party/mindspore/mindspore-src/source/mindspore/lite/src/extendrt/cxx_api/llm_engine/
Dllm_engine.cc92 Status LLMEngine::CompleteRequest(const LLMReq &req) { in CompleteRequest()
102 Status LLMModel::Predict(const LLMReq &req, const std::vector<MSTensor> &inputs, std::vector<MSTens… in Predict()
110 Status LLMModel::Predict(const std::vector<LLMReq> &req, const std::vector<MSTensor> &inputs, in Predict()
118 Status LLMModel::PreloadPromptPrefix(const LLMReq &req, const std::vector<MSTensor> &inputs) { in PreloadPromptPrefix()
126 Status LLMModel::ReleasePromptPrefix(const LLMReq &req) { in ReleasePromptPrefix()
134 Status LLMModel::PullKV(const LLMReq &req) { in PullKV()
142 Status LLMModel::MergeKV(const LLMReq &req, uint32_t batch_index, uint32_t batch_id) { in MergeKV()
/third_party/libdrm/freedreno/msm/
Dmsm_bo.c35 struct drm_msm_gem_info req = { in bo_allocate() local
69 struct drm_msm_gem_cpu_prep req = { in msm_bo_cpu_prep() local
81 struct drm_msm_gem_cpu_fini req = { in msm_bo_cpu_fini() local
90 struct drm_msm_gem_madvise req = { in msm_bo_madvise() local
109 struct drm_msm_gem_info req = { in msm_bo_iova() local
139 struct drm_msm_gem_new req = { in msm_bo_new_handle() local
/third_party/typescript/tests/baselines/reference/
DimportCallExpressionAsyncES2020.js21 const req = await import('./test') // FOUR constant in cl2
27 const req = await import('./test') // FIVE constant
33 const req = await import('./test'); // ONE constant
55 const req = await import('./test'); // FIVE constant

12345678910>>...30