/external/sonivox/arm-hybrid-22k/lib_src/ |
D | eas_fmsynth.c | 164 if ((pRegion->oper[operIndex].gain & 0xfc) == 0) in FM_SynthIsOutputOperator() 269 pFMVoice->oper[operIndex].envState = eFMEnvelopeStateRelease; in FM_ReleaseVoice() 272 pFMVoice->oper[operIndex].envRate = FM_CalcEGRate( in FM_ReleaseVoice() 274 fmReleaseTable[pRegion->oper[operIndex].velocityRelease & 0x0f], in FM_ReleaseVoice() 275 fmScaleTable[pRegion->oper[operIndex].egKeyScale >> 4]); in FM_ReleaseVoice() 305 pFMVoice->oper[0].envState = eFMEnvelopeStateMuted; in FM_MuteVoice() 306 pFMVoice->oper[1].envState = eFMEnvelopeStateMuted; in FM_MuteVoice() 307 pFMVoice->oper[2].envState = eFMEnvelopeStateMuted; in FM_MuteVoice() 308 pFMVoice->oper[3].envState = eFMEnvelopeStateMuted; in FM_MuteVoice() 339 if (((pRegion->oper[operIndex].gain & 0xfc) == 0) || in FM_SustainPedal() [all …]
|
D | eas_fmengine.c | 510 pVoice->oper[i].gain = vCfg->gain[i]; in FM_ConfigVoice() 511 pVoice->oper[i].outputGain = vCfg->outputGain[i]; in FM_ConfigVoice() 512 pVoice->oper[i].outputGain = vCfg->outputGain[i]; in FM_ConfigVoice() 515 pVoice->oper[i].phase = 0; in FM_ConfigVoice() 580 p->oper + 2, in FM_ProcessVoice() 591 p->oper + 2, in FM_ProcessVoice() 620 p->oper + 3, in FM_ProcessVoice() 631 p->oper + 3, in FM_ProcessVoice() 660 p->oper, in FM_ProcessVoice() 671 p->oper, in FM_ProcessVoice() [all …]
|
D | eas_fmsynth.h | 65 S_OPERATOR oper[4]; /* operator data */ member
|
D | eas_fmengine.h | 73 S_FM_ENG_OPER oper[4]; /* operator data */ member
|
/external/sonivox/arm-fm-22k/lib_src/ |
D | eas_fmsynth.c | 164 if ((pRegion->oper[operIndex].gain & 0xfc) == 0) in FM_SynthIsOutputOperator() 269 pFMVoice->oper[operIndex].envState = eFMEnvelopeStateRelease; in FM_ReleaseVoice() 272 pFMVoice->oper[operIndex].envRate = FM_CalcEGRate( in FM_ReleaseVoice() 274 fmReleaseTable[pRegion->oper[operIndex].velocityRelease & 0x0f], in FM_ReleaseVoice() 275 fmScaleTable[pRegion->oper[operIndex].egKeyScale >> 4]); in FM_ReleaseVoice() 305 pFMVoice->oper[0].envState = eFMEnvelopeStateMuted; in FM_MuteVoice() 306 pFMVoice->oper[1].envState = eFMEnvelopeStateMuted; in FM_MuteVoice() 307 pFMVoice->oper[2].envState = eFMEnvelopeStateMuted; in FM_MuteVoice() 308 pFMVoice->oper[3].envState = eFMEnvelopeStateMuted; in FM_MuteVoice() 339 if (((pRegion->oper[operIndex].gain & 0xfc) == 0) || in FM_SustainPedal() [all …]
|
D | eas_fmengine.c | 510 pVoice->oper[i].gain = vCfg->gain[i]; in FM_ConfigVoice() 511 pVoice->oper[i].outputGain = vCfg->outputGain[i]; in FM_ConfigVoice() 512 pVoice->oper[i].outputGain = vCfg->outputGain[i]; in FM_ConfigVoice() 515 pVoice->oper[i].phase = 0; in FM_ConfigVoice() 580 p->oper + 2, in FM_ProcessVoice() 591 p->oper + 2, in FM_ProcessVoice() 620 p->oper + 3, in FM_ProcessVoice() 631 p->oper + 3, in FM_ProcessVoice() 660 p->oper, in FM_ProcessVoice() 671 p->oper, in FM_ProcessVoice() [all …]
|
D | eas_fmsynth.h | 65 S_OPERATOR oper[4]; /* operator data */ member
|
D | eas_fmengine.h | 73 S_FM_ENG_OPER oper[4]; /* operator data */ member
|
/external/mesa3d/src/glsl/ |
D | ast_expr.cpp | 81 ast_expression_bin::ast_expression_bin(int oper, ast_expression *ex0, in ast_expression_bin() argument 83 ast_expression(oper, ex0, ex1, NULL) in ast_expression_bin() 85 assert((oper >= ast_plus) && (oper <= ast_logic_not)); in ast_expression_bin() 93 printf("%s ", operator_string(oper)); in print()
|
D | ast_to_hir.cpp | 902 parent_expr->operator_string(parent_expr->oper)); in get_scalar_boolean_operand() 1037 switch (this->oper) { in hir() 1067 result = new(ctx) ir_expression(operations[this->oper], type, in hir() 1079 (this->oper == ast_mul), in hir() 1083 result = new(ctx) ir_expression(operations[this->oper], type, in hir() 1093 assert(operations[this->oper] == ir_binop_mod); in hir() 1095 result = new(ctx) ir_expression(operations[this->oper], type, in hir() 1104 operator_string(this->oper)); in hir() 1110 type = shift_result_type(op[0]->type, op[1]->type, this->oper, state, in hir() 1112 result = new(ctx) ir_expression(operations[this->oper], type, in hir() [all …]
|
D | glsl_parser_extras.cpp | 530 switch (oper) { in print() 543 printf("%s ", operator_string(oper)); in print() 558 printf("%s ", operator_string(oper)); in print() 565 printf("%s ", operator_string(oper)); in print() 640 ast_expression::ast_expression(int oper, in ast_expression() argument 645 this->oper = ast_operators(oper); in ast_expression()
|
D | ast.h | 200 ast_expression(int oper, ast_expression *, 204 oper(ast_identifier) in ast_expression() 220 enum ast_operators oper; variable 254 ast_expression_bin(int oper, ast_expression *, ast_expression *);
|
/external/wpa_supplicant_8/src/ap/ |
D | ieee802_11_vht.c | 63 struct ieee80211_vht_operation *oper; in hostapd_eid_vht_operation() local 67 *pos++ = sizeof(*oper); in hostapd_eid_vht_operation() 69 oper = (struct ieee80211_vht_operation *) pos; in hostapd_eid_vht_operation() 70 os_memset(oper, 0, sizeof(*oper)); in hostapd_eid_vht_operation() 77 oper->vht_op_info_chan_center_freq_seg0_idx = in hostapd_eid_vht_operation() 79 oper->vht_op_info_chan_center_freq_seg1_idx = in hostapd_eid_vht_operation() 82 oper->vht_op_info_chwidth = hapd->iconf->vht_oper_chwidth; in hostapd_eid_vht_operation() 86 oper->vht_basic_mcs_set = host_to_le16(0xfffc); in hostapd_eid_vht_operation() 87 pos += sizeof(*oper); in hostapd_eid_vht_operation()
|
D | ieee802_11_ht.c | 84 struct ieee80211_ht_operation *oper; in hostapd_eid_ht_operation() local 91 *pos++ = sizeof(*oper); in hostapd_eid_ht_operation() 93 oper = (struct ieee80211_ht_operation *) pos; in hostapd_eid_ht_operation() 94 os_memset(oper, 0, sizeof(*oper)); in hostapd_eid_ht_operation() 96 oper->primary_chan = hapd->iconf->channel; in hostapd_eid_ht_operation() 97 oper->operation_mode = host_to_le16(hapd->iface->ht_op_mode); in hostapd_eid_ht_operation() 99 oper->ht_param |= HT_INFO_HT_PARAM_SECONDARY_CHNL_ABOVE | in hostapd_eid_ht_operation() 102 oper->ht_param |= HT_INFO_HT_PARAM_SECONDARY_CHNL_BELOW | in hostapd_eid_ht_operation() 105 pos += sizeof(*oper); in hostapd_eid_ht_operation()
|
D | wnm_ap.c | 27 u8 *buf, u16 *buf_len, enum wnm_oper oper) in ieee80211_11_get_tfs_ie() argument 29 wpa_printf(MSG_DEBUG, "%s: TFS get operation %d", __func__, oper); in ieee80211_11_get_tfs_ie() 31 return hostapd_drv_wnm_oper(hapd, oper, addr, buf, buf_len); in ieee80211_11_get_tfs_ie() 37 u8 *buf, u16 *buf_len, enum wnm_oper oper) in ieee80211_11_set_tfs_ie() argument 39 wpa_printf(MSG_DEBUG, "%s: TFS set operation %d", __func__, oper); in ieee80211_11_set_tfs_ie() 41 return hostapd_drv_wnm_oper(hapd, oper, addr, buf, buf_len); in ieee80211_11_set_tfs_ie()
|
/external/lldb/examples/synthetic/bitfield/ |
D | program.cpp | 18 MaskingOperator oper; member in MaskedData 25 oper(P) in MaskedData() 31 switch(oper) in apply() 61 oper = P; in setOperator()
|
/external/wpa_supplicant_8/src/common/ |
D | hw_features_common.c | 149 struct ieee80211_ht_operation *oper; in get_pri_sec_chan() local 156 oper = (struct ieee80211_ht_operation *) elems.ht_operation; in get_pri_sec_chan() 157 *pri_chan = oper->primary_chan; in get_pri_sec_chan() 158 if (oper->ht_param & HT_INFO_HT_PARAM_STA_CHNL_WIDTH) { in get_pri_sec_chan() 159 int sec = oper->ht_param & in get_pri_sec_chan() 242 struct ieee80211_ht_operation *oper; in check_20mhz_bss() local 255 oper = (struct ieee80211_ht_operation *) elems.ht_operation; in check_20mhz_bss() 256 if (oper->ht_param & HT_INFO_HT_PARAM_SECONDARY_CHNL_OFF_MASK) in check_20mhz_bss()
|
/external/mesa3d/src/glsl/glcpp/tests/ |
D | 089-redefine-macro-error.c | 16 #define oper(a,b) a+b macro 17 #define oper(a,b) a*b macro
|
D | 089-redefine-macro-error.c.expected | 11 0:17(9): preprocessor error: Redefinition of macro oper
|
/external/elfutils/src/src/ |
D | ar.c | 54 static int do_oper_extract (int oper, const char *arfname, char **argv, 58 static int do_oper_insert (int oper, const char *arfname, char **argv, 460 do_oper_extract (int oper, const char *arfname, char **argv, int argc, in do_oper_extract() argument 550 if (oper == oper_print) in do_oper_extract() 558 else if (oper == oper_list) in do_oper_extract() 590 if (oper == oper_list) in do_oper_extract() 612 if (oper == oper_print) in do_oper_extract() 674 if (oper != oper_print) in do_oper_extract() 1098 do_oper_insert (int oper, const char *arfname, char **argv, int argc, in do_oper_insert() argument 1104 int fd = open_archive (arfname, O_RDONLY, 0, &elf, &st, oper != oper_move); in do_oper_insert() [all …]
|
/external/wpa_supplicant_8/hs20/server/ |
D | spp_server.c | 1500 enum hs20_session_operation oper; in hs20_user_input_complete() local 1508 oper = atoi(val); in hs20_user_input_complete() 1511 if (oper == USER_REMEDIATION) { in hs20_user_input_complete() 1516 if (oper == FREE_REMEDIATION) { in hs20_user_input_complete() 1521 if (oper == SUBSCRIPTION_REGISTRATION) { in hs20_user_input_complete() 1537 enum hs20_session_operation oper; in hs20_cert_enroll_completed() local 1545 oper = atoi(val); in hs20_cert_enroll_completed() 1548 if (oper == SUBSCRIPTION_REGISTRATION) in hs20_cert_enroll_completed() 1563 enum hs20_session_operation oper; in hs20_cert_enroll_failed() local 1574 oper = atoi(val); in hs20_cert_enroll_failed() [all …]
|
/external/wpa_supplicant_8/hs20/server/www/ |
D | est.php | 54 $oper = $row['operation']; variable 55 if ($oper != '5') { 56 error_log("EST: Unexpected operation $oper for user=$user realm=$realm");
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonInstrInfo.cpp | 888 int oper = -1; in PredicateInstruction() local 906 oper = -1; in PredicateInstruction() 919 oper = MI->getNumOperands() - 2; in PredicateInstruction() 934 for (oper = MI->getNumOperands() - 3; oper >= 0; --oper) in PredicateInstruction() 936 MachineOperand &MO = MI->getOperand(oper); in PredicateInstruction() 948 MI->getOperand(oper+1).ChangeToRegister(MO.getReg(), MO.isDef(), in PredicateInstruction() 954 MI->getOperand(oper+1).ChangeToImmediate(MO.getImm()); in PredicateInstruction() 971 GAIdx = oper; in PredicateInstruction() 989 if (oper < -1) oper = -1; in PredicateInstruction() 991 MI->getOperand(oper+1).ChangeToRegister(PredMO.getReg(), PredMO.isDef(), in PredicateInstruction() [all …]
|
/external/wpa_supplicant_8/src/drivers/ |
D | driver_atheros.c | 1968 u8 *ie, u16 *len, enum wnm_oper oper) in athr_wnm_tfs() argument 1976 drv->iface, oper, MAC2STR(peer)); in athr_wnm_tfs() 1978 switch (oper) { in athr_wnm_tfs() 1991 val = oper; in athr_wnm_tfs() 2013 val = oper; in athr_wnm_tfs() 2040 val = oper; in athr_wnm_tfs() 2053 wpa_printf(MSG_DEBUG, "Unsupported TFS oper %d", oper); in athr_wnm_tfs() 2062 const u8 *peer, enum wnm_oper oper) in atheros_wnm_sleep() argument 2070 oper, MAC2STR(peer)); in atheros_wnm_sleep() 2082 val = oper; in atheros_wnm_sleep() [all …]
|
/external/libvpx/libvpx/tools/ |
D | vpx-astyle.sh | 5 --pad-oper --pad-header --unpad-paren \
|