/external/wpa_supplicant_8/src/pae/ |
D | ieee802_1x_secy_ops.c | 30 struct ieee802_1x_kay_ctx *ops; in secy_cp_control_protect_frames() local 37 ops = kay->ctx; in secy_cp_control_protect_frames() 38 if (!ops || !ops->enable_protect_frames) { in secy_cp_control_protect_frames() 44 return ops->enable_protect_frames(ops->ctx, enabled); in secy_cp_control_protect_frames() 50 struct ieee802_1x_kay_ctx *ops; in secy_cp_control_replay() local 57 ops = kay->ctx; in secy_cp_control_replay() 58 if (!ops || !ops->set_replay_protect) { in secy_cp_control_replay() 64 return ops->set_replay_protect(ops->ctx, enabled, win); in secy_cp_control_replay() 71 struct ieee802_1x_kay_ctx *ops; in secy_cp_control_current_cipher_suite() local 78 ops = kay->ctx; in secy_cp_control_current_cipher_suite() [all …]
|
/external/libnl/lib/ |
D | cache_mngt.c | 39 struct nl_cache_ops *ops; in nl_cache_ops_lookup() local 41 for (ops = cache_ops; ops; ops = ops->co_next) in nl_cache_ops_lookup() 42 if (!strcmp(ops->co_name, name)) in nl_cache_ops_lookup() 43 return ops; in nl_cache_ops_lookup() 62 struct nl_cache_ops *ops; in nl_cache_ops_associate() local 64 for (ops = cache_ops; ops; ops = ops->co_next) { in nl_cache_ops_associate() 65 if (ops->co_protocol != protocol) in nl_cache_ops_associate() 68 for (i = 0; ops->co_msgtypes[i].mt_id >= 0; i++) in nl_cache_ops_associate() 69 if (ops->co_msgtypes[i].mt_id == msgtype) in nl_cache_ops_associate() 70 return ops; in nl_cache_ops_associate() [all …]
|
D | object.c | 42 struct nl_object *nl_object_alloc(struct nl_object_ops *ops) in nl_object_alloc() argument 46 if (ops->oo_size < sizeof(*new)) in nl_object_alloc() 49 new = calloc(1, ops->oo_size); in nl_object_alloc() 56 new->ce_ops = ops; in nl_object_alloc() 57 if (ops->oo_constructor) in nl_object_alloc() 58 ops->oo_constructor(new); in nl_object_alloc() 72 struct nl_cache_ops *ops; in nl_object_alloc_name() local 74 ops = nl_cache_ops_lookup(kind); in nl_object_alloc_name() 75 if (!ops) in nl_object_alloc_name() 78 if (!(*result = nl_object_alloc(ops->co_obj_ops))) in nl_object_alloc_name() [all …]
|
D | cache.c | 70 struct nl_object_ops *ops; in nl_cache_nitems_filter() local 77 ops = cache->c_ops->co_obj_ops; in nl_cache_nitems_filter() 173 struct nl_cache *nl_cache_alloc(struct nl_cache_ops *ops) in nl_cache_alloc() argument 182 cache->c_ops = ops; in nl_cache_alloc() 189 int nl_cache_alloc_and_fill(struct nl_cache_ops *ops, struct nl_sock *sock, in nl_cache_alloc_and_fill() argument 195 if (!(cache = nl_cache_alloc(ops))) in nl_cache_alloc_and_fill() 214 struct nl_cache_ops *ops; in nl_cache_alloc_name() local 217 ops = nl_cache_ops_lookup(kind); in nl_cache_alloc_name() 218 if (!ops) in nl_cache_alloc_name() 221 if (!(cache = nl_cache_alloc(ops))) in nl_cache_alloc_name() [all …]
|
/external/fio/ |
D | profile.c | 11 struct profile_ops *ops = NULL; in find_profile() local 15 ops = flist_entry(n, struct profile_ops, list); in find_profile() 16 if (!strcmp(profile, ops->name)) in find_profile() 19 ops = NULL; in find_profile() 22 return ops; in find_profile() 27 struct profile_ops *ops; in load_profile() local 31 ops = find_profile(profile); in load_profile() 32 if (ops) { in load_profile() 33 if (ops->prep_cmd()) { in load_profile() 37 add_job_opts(ops->cmdline, FIO_CLIENT_TYPE_CLI); in load_profile() [all …]
|
D | ioengines.c | 25 static int check_engine_ops(struct ioengine_ops *ops) in check_engine_ops() argument 27 if (ops->version != FIO_IOOPS_VERSION) { in check_engine_ops() 28 log_err("bad ioops version %d (want %d)\n", ops->version, in check_engine_ops() 33 if (!ops->queue) { in check_engine_ops() 34 log_err("%s: no queue handler\n", ops->name); in check_engine_ops() 41 if (ops->flags & FIO_SYNCIO) in check_engine_ops() 44 if (!ops->event) { in check_engine_ops() 45 log_err("%s: no event handler\n", ops->name); in check_engine_ops() 48 if (!ops->getevents) { in check_engine_ops() 49 log_err("%s: no getevents handler\n", ops->name); in check_engine_ops() [all …]
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
D | annotate.c | 27 static void ins__delete(struct ins_operands *ops) in ins__delete() argument 29 free(ops->source.raw); in ins__delete() 30 free(ops->source.name); in ins__delete() 31 free(ops->target.raw); in ins__delete() 32 free(ops->target.name); in ins__delete() 36 struct ins_operands *ops) in ins__raw_scnprintf() argument 38 return scnprintf(bf, size, "%-6.6s %s", ins->name, ops->raw); in ins__raw_scnprintf() 42 struct ins_operands *ops) in ins__scnprintf() argument 44 if (ins->ops->scnprintf) in ins__scnprintf() 45 return ins->ops->scnprintf(ins, bf, size, ops); in ins__scnprintf() [all …]
|
/external/libnl/lib/genl/ |
D | mngt.c | 93 static int genl_msg_parser(struct nl_cache_ops *ops, struct sockaddr_nl *who, in genl_msg_parser() argument 102 if (ops->co_genl == NULL) in genl_msg_parser() 105 for (i = 0; i < ops->co_genl->o_ncmds; i++) { in genl_msg_parser() 106 cmd = &ops->co_genl->o_cmds[i]; in genl_msg_parser() 127 err = nlmsg_parse(nlh, ops->co_hdrsize, tb, cmd->c_maxattr, in genl_msg_parser() 132 err = cmd->c_msg_parser(ops, cmd, &info, pp); in genl_msg_parser() 141 struct genl_ops *ops; in genl_op2name() local 144 nl_list_for_each_entry(ops, &genl_ops_list, o_list) { in genl_op2name() 145 if (ops->o_family == family) { in genl_op2name() 146 for (i = 0; i < ops->o_ncmds; i++) { in genl_op2name() [all …]
|
/external/libnl/lib/route/link/ |
D | api.c | 52 struct rtnl_link_info_ops *ops; in rtnl_link_info_ops_lookup() local 54 for (ops = info_ops; ops; ops = ops->io_next) in rtnl_link_info_ops_lookup() 55 if (!strcmp(ops->io_name, name)) in rtnl_link_info_ops_lookup() 56 return ops; in rtnl_link_info_ops_lookup() 61 int rtnl_link_register_info(struct rtnl_link_info_ops *ops) in rtnl_link_register_info() argument 63 if (ops->io_name == NULL) in rtnl_link_register_info() 66 if (rtnl_link_info_ops_lookup(ops->io_name)) in rtnl_link_register_info() 69 NL_DBG(1, "Registered link info operations %s\n", ops->io_name); in rtnl_link_register_info() 71 ops->io_next = info_ops; in rtnl_link_register_info() 72 info_ops = ops; in rtnl_link_register_info() [all …]
|
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/svga/drm/ |
D | vmw_fence.c | 104 vmw_fence_ops(struct pb_fence_ops *ops) in vmw_fence_ops() argument 106 assert(ops); in vmw_fence_ops() 107 return (struct vmw_fence_ops *)ops; in vmw_fence_ops() 239 vmw_fence_ops_fence_reference(struct pb_fence_ops *ops, in vmw_fence_ops_fence_reference() argument 243 struct vmw_winsys_screen *vws = vmw_fence_ops(ops)->vws; in vmw_fence_ops_fence_reference() 254 vmw_fence_ops_fence_signalled(struct pb_fence_ops *ops, in vmw_fence_ops_fence_signalled() argument 258 struct vmw_winsys_screen *vws = vmw_fence_ops(ops)->vws; in vmw_fence_ops_fence_signalled() 270 vmw_fence_ops_fence_finish(struct pb_fence_ops *ops, in vmw_fence_ops_fence_finish() argument 274 struct vmw_winsys_screen *vws = vmw_fence_ops(ops)->vws; in vmw_fence_ops_fence_finish() 288 vmw_fence_ops_destroy(struct pb_fence_ops *ops) in vmw_fence_ops_destroy() argument [all …]
|
/external/mesa3d/src/gallium/winsys/svga/drm/ |
D | vmw_fence.c | 104 vmw_fence_ops(struct pb_fence_ops *ops) in vmw_fence_ops() argument 106 assert(ops); in vmw_fence_ops() 107 return (struct vmw_fence_ops *)ops; in vmw_fence_ops() 239 vmw_fence_ops_fence_reference(struct pb_fence_ops *ops, in vmw_fence_ops_fence_reference() argument 243 struct vmw_winsys_screen *vws = vmw_fence_ops(ops)->vws; in vmw_fence_ops_fence_reference() 254 vmw_fence_ops_fence_signalled(struct pb_fence_ops *ops, in vmw_fence_ops_fence_signalled() argument 258 struct vmw_winsys_screen *vws = vmw_fence_ops(ops)->vws; in vmw_fence_ops_fence_signalled() 270 vmw_fence_ops_fence_finish(struct pb_fence_ops *ops, in vmw_fence_ops_fence_finish() argument 274 struct vmw_winsys_screen *vws = vmw_fence_ops(ops)->vws; in vmw_fence_ops_fence_finish() 288 vmw_fence_ops_destroy(struct pb_fence_ops *ops) in vmw_fence_ops_destroy() argument [all …]
|
/external/libcxx/test/numerics/complex.number/complex.ops/ |
D | Android.mk | 17 test_makefile := external/libcxx/test/numerics/complex.number/complex.ops/Android.mk 19 test_name := numerics/complex.number/complex.ops/scalar_divide_complex 23 test_name := numerics/complex.number/complex.ops/complex_plus_complex 27 test_name := numerics/complex.number/complex.ops/complex_times_scalar 31 test_name := numerics/complex.number/complex.ops/complex_not_equals_scalar 35 test_name := numerics/complex.number/complex.ops/complex_equals_scalar 39 test_name := numerics/complex.number/complex.ops/unary_plus 43 test_name := numerics/complex.number/complex.ops/stream_input 47 test_name := numerics/complex.number/complex.ops/complex_divide_scalar 51 test_name := numerics/complex.number/complex.ops/scalar_plus_complex [all …]
|
/external/libnl/src/ |
D | nl-list-caches.c | 21 static char *id_attr_list(struct nl_object_ops *ops, char *buf, size_t len) in id_attr_list() argument 23 if (ops->oo_attrs2str != NULL) in id_attr_list() 24 return ops->oo_attrs2str(ops->oo_id_attrs, buf, len); in id_attr_list() 31 static void print(struct nl_cache_ops *ops, void *arg) in print() argument 40 ops->co_name, ops->co_hdrsize, in print() 41 nl_nlfamily2str(ops->co_protocol, buf, sizeof(buf)), in print() 42 ops->co_request_update ? "yes" : "no", in print() 43 ops->co_msg_parser ? "yes" : "no"); in print() 45 if (ops->co_obj_ops) { in print() 46 struct nl_object_ops *obj_ops = ops->co_obj_ops; in print() [all …]
|
/external/libnl/lib/route/cls/ |
D | ematch.c | 39 int rtnl_ematch_register(struct rtnl_ematch_ops *ops) in rtnl_ematch_register() argument 41 if (rtnl_ematch_lookup_ops(ops->eo_kind)) in rtnl_ematch_register() 44 nl_list_add_tail(&ops->eo_list, &ematch_ops_list); in rtnl_ematch_register() 55 int rtnl_ematch_unregister(struct rtnl_ematch_ops *ops) in rtnl_ematch_unregister() argument 60 if (ops->eo_kind == o->eo_kind) { in rtnl_ematch_unregister() 77 struct rtnl_ematch_ops *ops; in rtnl_ematch_lookup_ops() local 79 nl_list_for_each_entry(ops, &ematch_ops_list, eo_list) in rtnl_ematch_lookup_ops() 80 if (ops->eo_kind == kind) in rtnl_ematch_lookup_ops() 81 return ops; in rtnl_ematch_lookup_ops() 94 struct rtnl_ematch_ops *ops; in rtnl_ematch_lookup_ops_name() local [all …]
|
/external/chromium_org/content/browser/web_contents/ |
D | web_drag_utils_win.cc | 28 WebDragOperationsMask ops = WebDragOperationNone; in WinDragOpMaskToWebDragOpMask() local 30 ops = static_cast<WebDragOperationsMask>(ops | WebDragOperationCopy); in WinDragOpMaskToWebDragOpMask() 32 ops = static_cast<WebDragOperationsMask>(ops | WebDragOperationLink); in WinDragOpMaskToWebDragOpMask() 34 ops = static_cast<WebDragOperationsMask>(ops | WebDragOperationMove | in WinDragOpMaskToWebDragOpMask() 36 return ops; in WinDragOpMaskToWebDragOpMask() 49 DWORD WebDragOpMaskToWinDragOpMask(WebDragOperationsMask ops) { in WebDragOpMaskToWinDragOpMask() argument 51 if (ops & WebDragOperationCopy) in WebDragOpMaskToWinDragOpMask() 53 if (ops & WebDragOperationLink) in WebDragOpMaskToWinDragOpMask() 55 if (ops & (WebDragOperationMove | WebDragOperationGeneric)) in WebDragOpMaskToWinDragOpMask()
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
D | templite.py | 52 ops = [] 57 ops.append(('exp', tok[2:-2].strip())) 68 ops.append(('if', (words[1], if_ops))) 69 ops_stack.append(ops) 70 ops = if_ops 75 ops.append(('for', (words[1], words[3], for_ops))) 76 ops_stack.append(ops) 77 ops = for_ops 80 ops = ops_stack.pop() 81 assert ops[-1][0] == words[0][3:] [all …]
|
/external/yaffs2/yaffs2/ |
D | yaffs_mtdif.c | 79 struct mtd_oob_ops ops; in nandmtd_WriteChunkToNAND() local 94 ops.mode = MTD_OOB_AUTO; in nandmtd_WriteChunkToNAND() 95 ops.ooblen = 8; /* temp hack */ in nandmtd_WriteChunkToNAND() 97 ops.mode = MTD_OOB_RAW; in nandmtd_WriteChunkToNAND() 98 ops.ooblen = YAFFS_BYTES_PER_SPARE; in nandmtd_WriteChunkToNAND() 100 ops.len = data ? dev->nDataBytesPerChunk : ops.ooblen; in nandmtd_WriteChunkToNAND() 101 ops.datbuf = (u8 *)data; in nandmtd_WriteChunkToNAND() 102 ops.ooboffs = 0; in nandmtd_WriteChunkToNAND() 103 ops.oobbuf = spareAsBytes; in nandmtd_WriteChunkToNAND() 104 retval = mtd->write_oob(mtd, addr, &ops); in nandmtd_WriteChunkToNAND() [all …]
|
/external/llvm/lib/Target/X86/ |
D | X86InstrFragmentsSIMD.td | 18 def load_mmx : PatFrag<(ops node:$ptr), (x86mmx (load node:$ptr))>; 19 def bc_mmx : PatFrag<(ops node:$in), (x86mmx (bitconvert node:$in))>; 284 let MIOperandInfo = (ops ptr_rc, i8imm, ptr_rc_nosp, i32imm, i8imm); 290 let MIOperandInfo = (ops ptr_rc, i8imm, ptr_rc_nosp, i32imm, i8imm); 301 def loadv4f32 : PatFrag<(ops node:$ptr), (v4f32 (load node:$ptr))>; 302 def loadv2f64 : PatFrag<(ops node:$ptr), (v2f64 (load node:$ptr))>; 303 def loadv2i64 : PatFrag<(ops node:$ptr), (v2i64 (load node:$ptr))>; 307 def loadv8f32 : PatFrag<(ops node:$ptr), (v8f32 (load node:$ptr))>; 308 def loadv4f64 : PatFrag<(ops node:$ptr), (v4f64 (load node:$ptr))>; 309 def loadv4i64 : PatFrag<(ops node:$ptr), (v4i64 (load node:$ptr))>; [all …]
|
/external/libcxx/test/containers/sequences/list/list.ops/ |
D | 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/reverse [all …]
|
/external/libcxx/test/containers/sequences/forwardlist/forwardlist.ops/ |
D | 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/unique [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
D | AnimationTranslationUtilTest.cpp | 83 TransformOperations ops; in TEST() local 90 …ops.operations().append(TranslateTransformOperation::create(Length(2, Fixed), Length(0, Fixed), Tr… in TEST() 91 …ops.operations().append(RotateTransformOperation::create(0.1, 0.2, 0.3, 200000.4, TransformOperati… in TEST() 92 …ops.operations().append(ScaleTransformOperation::create(50.2, 100, -4, TransformOperation::Scale3D… in TEST() 93 toWebTransformOperations(ops, &outOps); in TEST() 98 FilterOperations ops; in TEST() local 106 … ops.operations().append(BasicColorMatrixFilterOperation::create(0.5, FilterOperation::SATURATE)); in TEST() 107 … ops.operations().append(BasicColorMatrixFilterOperation::create(0.2, FilterOperation::GRAYSCALE)); in TEST() 108 ops.operations().append(BasicColorMatrixFilterOperation::create(0.8, FilterOperation::SEPIA)); in TEST() 109 ops.operations().append(BasicColorMatrixFilterOperation::create(0.1, FilterOperation::OPACITY)); in TEST() [all …]
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/ |
D | FilterOperationsTest.cpp | 37 FilterOperations ops; in TEST() local 38 ops.operations().append(BlurFilterOperation::create(Length(20.0, Fixed))); in TEST() 39 EXPECT_TRUE(ops.hasOutsets()); in TEST() 40 FilterOutsets outsets = ops.outsets(); in TEST() 49 FilterOperations ops; in TEST() local 50 ops.operations().append(DropShadowFilterOperation::create(IntPoint(3, 8), 20, Color(1, 2, 3))); in TEST() 51 EXPECT_TRUE(ops.hasOutsets()); in TEST() 52 FilterOutsets outsets = ops.outsets(); in TEST()
|
/external/libcxx/test/numerics/complex.number/complex.member.ops/ |
D | Android.mk | 17 test_makefile := external/libcxx/test/numerics/complex.number/complex.member.ops/Android.mk 19 test_name := numerics/complex.number/complex.member.ops/divide_equal_complex 23 test_name := numerics/complex.number/complex.member.ops/minus_equal_scalar 27 test_name := numerics/complex.number/complex.member.ops/minus_equal_complex 31 test_name := numerics/complex.number/complex.member.ops/plus_equal_scalar 35 test_name := numerics/complex.number/complex.member.ops/times_equal_complex 39 test_name := numerics/complex.number/complex.member.ops/times_equal_scalar 43 test_name := numerics/complex.number/complex.member.ops/assignment_complex 47 test_name := numerics/complex.number/complex.member.ops/assignment_scalar 51 test_name := numerics/complex.number/complex.member.ops/divide_equal_scalar [all …]
|
/external/llvm/lib/Target/SystemZ/ |
D | SystemZOperators.td | 180 def z_scmp : PatFrag<(ops node:$a, node:$b), (z_icmp node:$a, node:$b, imm), [{ 184 def z_ucmp : PatFrag<(ops node:$a, node:$b), (z_icmp node:$a, node:$b, imm), [{ 190 def z_tm_reg : PatFrag<(ops node:$a, node:$b), (z_tm node:$a, node:$b, imm)>; 191 def z_tm_mem : PatFrag<(ops node:$a, node:$b), (z_tm node:$a, node:$b, 0)>; 194 def sext8 : PatFrag<(ops node:$src), (sext_inreg node:$src, i8)>; 195 def sext16 : PatFrag<(ops node:$src), (sext_inreg node:$src, i16)>; 196 def sext32 : PatFrag<(ops node:$src), (sext (i32 node:$src))>; 199 def zext8 : PatFrag<(ops node:$src), (and node:$src, 0xff)>; 200 def zext16 : PatFrag<(ops node:$src), (and node:$src, 0xffff)>; 201 def zext32 : PatFrag<(ops node:$src), (zext (i32 node:$src))>; [all …]
|
/external/chromium_org/third_party/re2/re2/testing/ |
D | regexp_generator.cc | 34 static const char *ops[] = { in EgrepOps() local 42 static vector<string> v(ops, ops + arraysize(ops)); in EgrepOps() 48 const vector<string>& ops) in RegexpGenerator() argument 49 : maxatoms_(maxatoms), maxops_(maxops), atoms_(atoms), ops_(ops) { in RegexpGenerator() 102 int ops, int atoms) { in GeneratePostfix() argument 109 if (ops + nstk - 1 > maxops_) in GeneratePostfix() 116 GeneratePostfix(post, nstk + 1, ops, atoms + 1); in GeneratePostfix() 122 if (ops < maxops_) { in GeneratePostfix() 128 GeneratePostfix(post, nstk - nargs + 1, ops + 1, atoms); in GeneratePostfix() 138 int ops, int atoms) { in GenerateRandomPostfix() argument [all …]
|