HomeSort by relevance Sort by last modified time
    Searched refs:ops (Results 1 - 25 of 412) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libnl/lib/
cache_mngt.c 39 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; ops = ops->co_next)
99 struct nl_cache_ops *ops; local
116 struct nl_cache_ops *ops; local
192 struct nl_cache_ops *ops; local
211 struct nl_cache_ops *ops; local
232 struct nl_cache_ops *ops; local
    [all...]
object.c 39 * @arg ops cache operations handle
42 struct nl_object *nl_object_alloc(struct nl_object_ops *ops)
46 if (ops->oo_size < sizeof(*new))
49 new = calloc(1, ops->oo_size);
56 new->ce_ops = ops;
57 if (ops->oo_constructor)
58 ops->oo_constructor(new);
72 struct nl_cache_ops *ops; local
74 ops = nl_cache_ops_lookup(kind);
75 if (!ops)
97 struct nl_object_ops *ops = obj_ops(obj); local
135 struct nl_object_ops *ops = obj_ops(obj); local
260 struct nl_object_ops *ops = obj_ops(a); local
298 struct nl_object_ops *ops = obj_ops(a); local
317 struct nl_object_ops *ops = obj_ops(obj); local
341 struct nl_object_ops *ops = obj_ops(obj); local
    [all...]
  /external/fio/
profile.c 11 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->cmdline, FIO_CLIENT_TYPE_CLI)
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/chromium_org/third_party/re2/re2/testing/
exhaustive1_test.cc 16 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,
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/pipebuffer/
pb_buffer_fenced.h 73 void (*destroy)( struct pb_fence_ops *ops );
76 void (*fence_reference)( struct pb_fence_ops *ops,
85 int (*fence_signalled)( struct pb_fence_ops *ops,
94 int (*fence_finish)( struct pb_fence_ops *ops,
  /external/libnl/lib/route/link/
api.c 52 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)
63 if (ops->io_name == NULL)
66 if (rtnl_link_info_ops_lookup(ops->io_name)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/pipebuffer/
pb_buffer_fenced.h 73 void (*destroy)( struct pb_fence_ops *ops );
76 void (*fence_reference)( struct pb_fence_ops *ops,
85 int (*fence_signalled)( struct pb_fence_ops *ops,
94 int (*fence_finish)( struct pb_fence_ops *ops,
  /external/libnl/lib/genl/
mngt.c 93 static int genl_msg_parser(struct nl_cache_ops *ops, struct sockaddr_nl *who,
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->o_ncmds; i++)
255 struct genl_ops *ops; local
    [all...]
  /device/lge/hammerhead/camera/QCamera2/HAL3/
QCamera3VendorTags.h 112 static void get_vendor_tag_ops(vendor_tag_ops_t* ops);
114 const vendor_tag_ops_t *ops);
116 const vendor_tag_ops_t *ops,
119 const vendor_tag_ops_t *ops,
122 const vendor_tag_ops_t *ops,
125 const vendor_tag_ops_t *ops,
128 static const vendor_tag_ops_t *Ops;
QCamera3VendorTags.cpp 85 const vendor_tag_ops_t* QCamera3VendorTags::Ops = NULL;
93 * @ops : function pointer table to be filled by HAL
99 vendor_tag_ops_t* ops)
103 Ops = ops;
105 ops->get_tag_count = get_tag_count;
106 ops->get_all_tags = get_all_tags;
107 ops->get_section_name = get_section_name;
108 ops->get_tag_name = get_tag_name;
109 ops->get_tag_type = get_tag_type
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FilterOperationsTest.cpp 37 FilterOperations ops; local
38 ops.operations().append(BlurFilterOperation::create(Length(20.0, Fixed)));
39 EXPECT_TRUE(ops.hasOutsets());
40 FilterOutsets outsets = ops.outsets();
49 FilterOperations ops; local
50 ops.operations().append(DropShadowFilterOperation::create(IntPoint(3, 8), 20, Color(1, 2, 3)));
51 EXPECT_TRUE(ops.hasOutsets());
52 FilterOutsets outsets = ops.outsets();
  /external/chromium_org/content/browser/web_contents/
web_drag_utils_win.cc 28 WebDragOperationsMask ops = WebDragOperationNone; local
30 ops = static_cast<WebDragOperationsMask>(ops | WebDragOperationCopy);
32 ops = static_cast<WebDragOperationsMask>(ops | WebDragOperationLink);
34 ops = static_cast<WebDragOperationsMask>(ops | WebDragOperationMove |
36 return ops;
49 DWORD WebDragOpMaskToWinDragOpMask(WebDragOperationsMask ops) {
51 if (ops & WebDragOperationCopy
    [all...]
  /external/libnl/src/
nl-list-caches.c 21 static char *id_attr_list(struct nl_object_ops *ops, char *buf, size_t len)
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)
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->co_msg_parser ? "yes" : "no")
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
annotate.c 27 static void ins__delete(struct ins_operands *ops)
29 free(ops->source.raw);
30 free(ops->source.name);
31 free(ops->target.raw);
32 free(ops->target.name);
36 struct ins_operands *ops)
38 return scnprintf(bf, size, "%-6.6s %s", ins->name, ops->raw);
42 struct ins_operands *ops)
44 if (ins->ops->scnprintf)
45 return ins->ops->scnprintf(ins, bf, size, ops)
    [all...]
  /device/moto/shamu/camera/QCamera2/HAL3/
QCamera3VendorTags.h 128 static void get_vendor_tag_ops(vendor_tag_ops_t* ops);
130 const vendor_tag_ops_t *ops);
132 const vendor_tag_ops_t *ops,
135 const vendor_tag_ops_t *ops,
138 const vendor_tag_ops_t *ops,
141 const vendor_tag_ops_t *ops,
144 static const vendor_tag_ops_t *Ops;
QCamera3VendorTags.cpp 119 const vendor_tag_ops_t* QCamera3VendorTags::Ops = NULL;
127 * @ops : function pointer table to be filled by HAL
133 vendor_tag_ops_t* ops)
137 Ops = ops;
139 ops->get_tag_count = get_tag_count;
140 ops->get_all_tags = get_all_tags;
141 ops->get_section_name = get_section_name;
142 ops->get_tag_name = get_tag_name;
143 ops->get_tag_type = get_tag_type
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationTranslationUtilTest.cpp 83 TransformOperations ops; local
90 ops.operations().append(TranslateTransformOperation::create(Length(2, Fixed), Length(0, Fixed), TransformOperation::TranslateX));
91 ops.operations().append(RotateTransformOperation::create(0.1, 0.2, 0.3, 200000.4, TransformOperation::Rotate3D));
92 ops.operations().append(ScaleTransformOperation::create(50.2, 100, -4, TransformOperation::Scale3D));
93 toWebTransformOperations(ops, &outOps);
98 FilterOperations ops; local
106 ops.operations().append(BasicColorMatrixFilterOperation::create(0.5, FilterOperation::SATURATE));
107 ops.operations().append(BasicColorMatrixFilterOperation::create(0.2, FilterOperation::GRAYSCALE));
108 ops.operations().append(BasicColorMatrixFilterOperation::create(0.8, FilterOperation::SEPIA));
109 ops.operations().append(BasicColorMatrixFilterOperation::create(0.1, FilterOperation::OPACITY))
    [all...]
  /external/libcxx/test/numerics/numeric.ops/
Android.mk 17 test_makefile := external/libcxx/test/numerics/numeric.ops/Android.mk
19 test_name := numerics/numeric.ops/version
  /external/chromium_org/third_party/mesa/src/src/gallium/winsys/svga/drm/
vmw_fence.c 100 * @ops: Pointer to a struct pb_fence_ops.
104 vmw_fence_ops(struct pb_fence_ops *ops)
106 assert(ops);
107 return (struct vmw_fence_ops *)ops;
239 vmw_fence_ops_fence_reference(struct pb_fence_ops *ops,
243 struct vmw_winsys_screen *vws = vmw_fence_ops(ops)->vws;
254 vmw_fence_ops_fence_signalled(struct pb_fence_ops *ops,
258 struct vmw_winsys_screen *vws = vmw_fence_ops(ops)->vws;
270 vmw_fence_ops_fence_finish(struct pb_fence_ops *ops,
274 struct vmw_winsys_screen *vws = vmw_fence_ops(ops)->vws
307 struct vmw_fence_ops *ops; local
    [all...]
  /external/elfutils/0.153/libdw/
dwarf_frame_cfa.c 59 dwarf_frame_cfa (fs, ops, nops)
61 Dwarf_Op **ops;
72 *ops = NULL;
78 *ops = &fs->cfa_data.offset;
88 ops, nops, IDX_debug_frame);
  /external/mesa3d/src/gallium/winsys/svga/drm/
vmw_fence.c 100 * @ops: Pointer to a struct pb_fence_ops.
104 vmw_fence_ops(struct pb_fence_ops *ops)
106 assert(ops);
107 return (struct vmw_fence_ops *)ops;
239 vmw_fence_ops_fence_reference(struct pb_fence_ops *ops,
243 struct vmw_winsys_screen *vws = vmw_fence_ops(ops)->vws;
254 vmw_fence_ops_fence_signalled(struct pb_fence_ops *ops,
258 struct vmw_winsys_screen *vws = vmw_fence_ops(ops)->vws;
270 vmw_fence_ops_fence_finish(struct pb_fence_ops *ops,
274 struct vmw_winsys_screen *vws = vmw_fence_ops(ops)->vws
307 struct vmw_fence_ops *ops; local
    [all...]
  /external/libcxx/test/containers/sequences/forwardlist/forwardlist.ops/
Android.mk 17 test_makefile := external/libcxx/test/containers/sequences/forwardlist/forwardlist.ops/Android.mk
19 test_name := containers/sequences/forwardlist/forwardlist.ops/sort
23 test_name := containers/sequences/forwardlist/forwardlist.ops/merge_pred
27 test_name := containers/sequences/forwardlist/forwardlist.ops/merge
31 test_name := containers/sequences/forwardlist/forwardlist.ops/unique_pred
35 test_name := containers/sequences/forwardlist/forwardlist.ops/splice_after_flist
39 test_name := containers/sequences/forwardlist/forwardlist.ops/sort_pred
43 test_name := containers/sequences/forwardlist/forwardlist.ops/splice_after_one
47 test_name := containers/sequences/forwardlist/forwardlist.ops/reverse
51 test_name := containers/sequences/forwardlist/forwardlist.ops/uniqu
    [all...]
  /external/libcxx/test/containers/sequences/list/list.ops/
Android.mk 17 test_makefile := external/libcxx/test/containers/sequences/list/list.ops/Android.mk
19 test_name := containers/sequences/list/list.ops/sort
23 test_name := containers/sequences/list/list.ops/sort_comp
27 test_name := containers/sequences/list/list.ops/merge
31 test_name := containers/sequences/list/list.ops/unique_pred
35 test_name := containers/sequences/list/list.ops/splice_pos_list_iter
39 test_name := containers/sequences/list/list.ops/splice_pos_list
43 test_name := containers/sequences/list/list.ops/merge_comp
47 test_name := containers/sequences/list/list.ops/splice_pos_list_iter_iter
51 test_name := containers/sequences/list/list.ops/revers
    [all...]
  /external/libcxx/test/strings/basic.string/string.ops/string_compare/
Android.mk 17 test_makefile := external/libcxx/test/strings/basic.string/string.ops/string_compare/Android.mk
19 test_name := strings/basic.string/string.ops/string_compare/string
23 test_name := strings/basic.string/string.ops/string_compare/size_size_pointer
27 test_name := strings/basic.string/string.ops/string_compare/pointer
31 test_name := strings/basic.string/string.ops/string_compare/size_size_pointer_size
35 test_name := strings/basic.string/string.ops/string_compare/size_size_string
39 test_name := strings/basic.string/string.ops/string_compare/size_size_string_size_size
  /external/libcxx/test/numerics/complex.number/complex.value.ops/
Android.mk 17 test_makefile := external/libcxx/test/numerics/complex.number/complex.value.ops/Android.mk
19 test_name := numerics/complex.number/complex.value.ops/polar
23 test_name := numerics/complex.number/complex.value.ops/conj
27 test_name := numerics/complex.number/complex.value.ops/abs
31 test_name := numerics/complex.number/complex.value.ops/imag
35 test_name := numerics/complex.number/complex.value.ops/proj
39 test_name := numerics/complex.number/complex.value.ops/real
43 test_name := numerics/complex.number/complex.value.ops/arg
47 test_name := numerics/complex.number/complex.value.ops/norm

Completed in 1066 milliseconds

1 2 3 4 5 6 7 8 91011>>