Searched defs:ops (Results 1 - 25 of 134) sorted by relevance

123456

/external/regex-re2/re2/testing/
H A Dexhaustive1_test.cc16 vector<string> ops = Split(" ", local
20 ExhaustiveTest(3, 2, Explode("abc."), ops,
22 ExhaustiveTest(3, 2, Explode("abc."), ops,
28 vector<string> ops = Split(" ", local
32 ExhaustiveTest(3, 2, Split(" ", "a (a) b"), ops,
37 ExhaustiveTest(4, 3, Split(" ", "a (a)"), ops,
H A Dexhaustive3_test.cc72 vector<string> ops; // no ops local
73 ExhaustiveTest(1, 0, atoms, ops,
85 vector<string> ops; // no ops local
89 ExhaustiveTest(1, 0, atoms, ops,
H A Drandom_test.cc23 const vector<string>& ops,
34 ExhaustiveTester t(maxatoms, maxops, alphabet, ops,
78 vector<string> ops = Split(" ", local
91 RandomTest(10, 10, atoms, ops, 20, alphabet, "");
21 RandomTest(int maxatoms, int maxops, const vector<string>& alphabet, const vector<string>& ops, int maxstrlen, const vector<string>& stralphabet, const string& wrapper) argument
H A Dsearch_test.cc315 vector<string> atom, alpha, ops; local
318 ExhaustiveTest(1, 0, atom, ops, 1, alpha, "", "");
/external/elfutils/libdw/
H A Ddwarf_frame_cfa.c38 dwarf_frame_cfa (Dwarf_Frame *fs, Dwarf_Op **ops, size_t *nops) argument
48 *ops = NULL;
54 *ops = &fs->cfa_data.offset;
64 ops, nops, IDX_debug_frame);
H A Ddwarf_frame_register.c38 Dwarf_Op **ops, size_t *nops)
50 *ops = ops_mem;
73 *ops = NULL;
85 *ops = ops_mem;
112 ops, nops, IDX_debug_frame) < 0)
37 dwarf_frame_register(Dwarf_Frame *fs, int regno, Dwarf_Op *ops_mem, Dwarf_Op **ops, size_t *nops) argument
/external/libnl/lib/route/link/
H A Dapi.c52 struct rtnl_link_info_ops *ops; local
54 for (ops = info_ops; ops; ops = ops->io_next)
55 if (!strcmp(ops->io_name, name))
56 return ops;
61 int rtnl_link_register_info(struct rtnl_link_info_ops *ops) argument
63 if (ops->io_name == NULL)
66 if (rtnl_link_info_ops_lookup(ops
77 rtnl_link_unregister_info(struct rtnl_link_info_ops *ops) argument
[all...]
/external/libnl/src/cls/
H A Dutils.h21 struct rtnl_cls_ops * ops; member in struct:cls_module
33 struct rtnl_ematch_ops *ops; member in struct:ematch_module
H A Dutils.c75 struct cls_module *lookup_cls_mod(struct rtnl_cls_ops *ops) argument
80 if (mod->ops == ops)
89 struct rtnl_cls_ops *ops; local
91 if (!(ops = __rtnl_cls_lookup_ops(mod->name)))
95 if (lookup_cls_mod(ops) != NULL)
98 mod->ops = ops;
/external/fio/
H A Dprofile.c11 struct profile_ops *ops = NULL; local
15 ops = flist_entry(n, struct profile_ops, list);
16 if (!strcmp(profile, ops->name))
19 ops = NULL;
22 return ops;
27 struct profile_ops *ops; local
31 ops = find_profile(profile);
32 if (ops) {
33 if (ops->prep_cmd()) {
37 add_job_opts(ops
45 add_profile_options(struct profile_ops *ops) argument
64 register_profile(struct profile_ops *ops) argument
81 unregister_profile(struct profile_ops *ops) argument
91 struct profile_ops *ops; local
108 struct prof_io_ops *ops = &td->prof_io_ops; local
118 struct prof_io_ops *ops = &td->prof_io_ops; local
[all...]
/external/libnl/src/
H A Dnl-list-caches.c21 static char *id_attr_list(struct nl_object_ops *ops, char *buf, size_t len) argument
23 if (ops->oo_attrs2str != NULL)
24 return ops->oo_attrs2str(ops->oo_id_attrs, buf, len);
31 static void print(struct nl_cache_ops *ops, void *arg) argument
40 ops->co_name, ops->co_hdrsize,
41 nl_nlfamily2str(ops->co_protocol, buf, sizeof(buf)),
42 ops->co_request_update ? "yes" : "no",
43 ops
[all...]
H A Dnl-cls-add.c40 struct rtnl_cls_ops *ops; local
99 ops = rtnl_cls_get_ops(cls);
100 if (!(mod = lookup_cls_mod(ops)))
/external/mesa3d/src/gallium/auxiliary/pipe-loader/
H A Dpipe_loader.h64 const struct pipe_loader_ops *ops; member in struct:pipe_loader_device
/external/parameter-framework/asio/include/asio/detail/impl/
H A Dselect_reactor.hpp62 op_queue<operation> ops; local
63 std::size_t n = queue.cancel_timer(timer, ops, max_cancelled);
65 io_service_.post_deferred_completions(ops);
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/
H A Dselect_reactor.hpp62 op_queue<operation> ops; local
63 std::size_t n = queue.cancel_timer(timer, ops, max_cancelled);
65 io_service_.post_deferred_completions(ops);
/external/skia/gm/
H A Dcircularclips.cpp39 SkRegion::Op ops[] = { variable
73 for (size_t op = 0; op < SK_ARRAY_COUNT(ops); op++) {
77 canvas->clipPath(fCircle2, ops[op]);
/external/wpa_supplicant_8/wpa_supplicant/
H A Dautoscan.c53 const struct autoscan_ops *ops = NULL; local
77 ops = autoscan_modules[i];
82 if (ops == NULL) {
94 wpa_s->autoscan_priv = ops->init(wpa_s, params);
105 wpa_s->autoscan = ops;
108 "parameters '%s'", ops->name, params);
H A Dbgscan.c40 const struct bgscan_ops *ops = NULL; local
57 ops = bgscan_modules[i];
62 if (ops == NULL) {
68 wpa_s->bgscan_priv = ops->init(wpa_s, params, ssid);
71 wpa_s->bgscan = ops;
73 "parameters '%s'", ops->name, params);
/external/parameter-framework/asio/include/asio/detail/
H A Dposix_fd_set_adapter.hpp57 void set(reactor_op_queue<socket_type>& operations, op_queue<operation>& ops) argument
66 operations.cancel_operations(op_iter, ops, ec);
87 op_queue<operation>& ops) const
94 operations.perform_operations(op_iter, ops);
H A Dreactor_op_queue.hpp70 bool cancel_operations(iterator i, op_queue<operation>& ops, argument
80 ops.push(op);
93 bool cancel_operations(Descriptor descriptor, op_queue<operation>& ops, argument
97 return this->cancel_operations(operations_.find(descriptor), ops, ec);
115 bool perform_operations(iterator i, op_queue<operation>& ops) argument
124 ops.push(op);
138 bool perform_operations(Descriptor descriptor, op_queue<operation>& ops) argument
140 return this->perform_operations(operations_.find(descriptor), ops);
144 void get_all_operations(op_queue<operation>& ops) argument
150 ops
[all...]
/external/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dposix_fd_set_adapter.hpp57 void set(reactor_op_queue<socket_type>& operations, op_queue<operation>& ops) argument
66 operations.cancel_operations(op_iter, ops, ec);
87 op_queue<operation>& ops) const
94 operations.perform_operations(op_iter, ops);
/external/libnl/lib/
H A Dcache_mngt.c39 struct nl_cache_ops *ops; local
41 for (ops = cache_ops; ops; ops = ops->co_next)
42 if (!strcmp(ops->co_name, name))
43 return ops;
62 struct nl_cache_ops *ops; local
64 for (ops = cache_ops; ops; op
86 nl_msgtype_lookup(struct nl_cache_ops *ops, int msgtype) argument
99 struct nl_cache_ops *ops; local
116 struct nl_cache_ops *ops; local
131 nl_cache_mngt_register(struct nl_cache_ops *ops) argument
158 nl_cache_mngt_unregister(struct nl_cache_ops *ops) argument
192 struct nl_cache_ops *ops; local
211 struct nl_cache_ops *ops; local
232 struct nl_cache_ops *ops; local
[all...]
/external/libnl/lib/genl/
H A Dmngt.c93 static int genl_msg_parser(struct nl_cache_ops *ops, struct sockaddr_nl *who, argument
102 if (ops->co_genl == NULL)
105 for (i = 0; i < ops->co_genl->o_ncmds; i++) {
106 cmd = &ops->co_genl->o_cmds[i];
127 err = nlmsg_parse(nlh, ops->co_hdrsize, tb, cmd->c_maxattr,
132 err = cmd->c_msg_parser(ops, cmd, &info, pp);
141 struct genl_ops *ops; local
144 nl_list_for_each_entry(ops, &genl_ops_list, o_list) {
145 if (ops->o_family == family) {
146 for (i = 0; i < ops
172 genl_register(struct nl_cache_ops *ops) argument
209 genl_unregister(struct nl_cache_ops *ops) argument
222 __genl_ops_resolve(struct nl_cache *ctrl, struct genl_ops *ops) argument
237 genl_ops_resolve(struct nl_sock *sk, struct genl_ops *ops) argument
255 struct genl_ops *ops; local
[all...]
/external/libnl/lib/netfilter/
H A Dlog_msg.c169 static int log_msg_parser(struct nl_cache_ops *ops, struct sockaddr_nl *who, argument
/external/mesa3d/src/gallium/winsys/svga/drm/
H A Dvmw_fence.c100 * @ops: Pointer to a struct pb_fence_ops.
104 vmw_fence_ops(struct pb_fence_ops *ops) argument
106 assert(ops);
107 return (struct vmw_fence_ops *)ops;
239 vmw_fence_ops_fence_reference(struct pb_fence_ops *ops, argument
243 struct vmw_winsys_screen *vws = vmw_fence_ops(ops)->vws;
254 vmw_fence_ops_fence_signalled(struct pb_fence_ops *ops, argument
258 struct vmw_winsys_screen *vws = vmw_fence_ops(ops)->vws;
270 vmw_fence_ops_fence_finish(struct pb_fence_ops *ops, argument
274 struct vmw_winsys_screen *vws = vmw_fence_ops(ops)
288 vmw_fence_ops_destroy(struct pb_fence_ops *ops) argument
307 struct vmw_fence_ops *ops; local
[all...]

Completed in 1696 milliseconds

123456