/hardware/libhardware_legacy/audio/ |
D | AudioPolicyCompatClient.cpp | 58 status_t AudioPolicyCompatClient::closeOutput(audio_io_handle_t output) in closeOutput() argument 60 return mServiceOps->close_output(mService, output); in closeOutput() 63 status_t AudioPolicyCompatClient::suspendOutput(audio_io_handle_t output) in suspendOutput() argument 65 return mServiceOps->suspend_output(mService, output); in suspendOutput() 68 status_t AudioPolicyCompatClient::restoreOutput(audio_io_handle_t output) in restoreOutput() argument 70 return mServiceOps->restore_output(mService, output); in restoreOutput() 89 audio_io_handle_t output) in setStreamOutput() argument 92 output); in setStreamOutput() 124 audio_io_handle_t output, in setStreamVolume() argument 128 volume, output, delayMs); in setStreamVolume()
|
D | AudioPolicyManagerBase.cpp | 459 audio_io_handle_t output = mOutputs.keyAt(i); in setForceUse() local 460 audio_devices_t newDevice = getNewDevice(output, true /*fromCache*/); in setForceUse() 461 setOutputDevice(output, newDevice, (newDevice != AUDIO_DEVICE_NONE)); in setForceUse() 463 applyStreamVolumes(output, newDevice, 0, true); in setForceUse() 537 audio_io_handle_t output = 0; in getOutput() local 632 output = mpClientInterface->openOutput(profile->mModule->mHandle, in getOutput() 642 if (output == 0 || in getOutput() 647 "format %d %d, channelMask %04x %04x", output, samplingRate, in getOutput() 650 if (output != 0) { in getOutput() 651 mpClientInterface->closeOutput(output); in getOutput() [all …]
|
D | AudioPolicyCompatClient.h | 50 virtual status_t closeOutput(audio_io_handle_t output); 51 virtual status_t suspendOutput(audio_io_handle_t output); 52 virtual status_t restoreOutput(audio_io_handle_t output); 59 virtual status_t setStreamOutput(AudioSystem::stream_type stream, audio_io_handle_t output); 70 audio_io_handle_t output,
|
D | audio_policy_hal.cpp | 153 static int ap_start_output(struct audio_policy *pol, audio_io_handle_t output, in ap_start_output() argument 157 return lap->apm->startOutput(output, (AudioSystem::stream_type)stream, in ap_start_output() 161 static int ap_stop_output(struct audio_policy *pol, audio_io_handle_t output, in ap_stop_output() argument 165 return lap->apm->stopOutput(output, (AudioSystem::stream_type)stream, in ap_stop_output() 170 audio_io_handle_t output) in ap_release_output() argument 173 lap->apm->releaseOutput(output); in ap_release_output()
|
/hardware/libhardware/include/hardware/ |
D | audio_policy.h | 142 audio_io_handle_t output, 149 audio_io_handle_t output, 154 void (*release_output)(struct audio_policy *pol, audio_io_handle_t output); 223 audio_io_handle_t output, 289 int (*close_output)(void *service, audio_io_handle_t output); 297 int (*suspend_output)(void *service, audio_io_handle_t output); 300 int (*restore_output)(void *service, audio_io_handle_t output); 332 audio_io_handle_t output, 338 audio_io_handle_t output);
|
/hardware/invensense/60xx/libsensors_iio/software/core/mllite/ |
D | ml_math_func.c | 613 void inv_convert_to_body(unsigned short orientation, const long *input, long *output) in inv_convert_to_body() argument 615 output[0] = input[orientation & 0x03] * SIGNSET(orientation & 0x004); in inv_convert_to_body() 616 output[1] = input[(orientation>>3) & 0x03] * SIGNSET(orientation & 0x020); in inv_convert_to_body() 617 output[2] = input[(orientation>>6) & 0x03] * SIGNSET(orientation & 0x100); in inv_convert_to_body() 625 void inv_convert_to_chip(unsigned short orientation, const long *input, long *output) in inv_convert_to_chip() argument 627 output[orientation & 0x03] = input[0] * SIGNSET(orientation & 0x004); in inv_convert_to_chip() 628 output[(orientation>>3) & 0x03] = input[1] * SIGNSET(orientation & 0x020); in inv_convert_to_chip() 629 output[(orientation>>6) & 0x03] = input[2] * SIGNSET(orientation & 0x100); in inv_convert_to_chip() 640 …t_to_body_with_scale(unsigned short orientation, long sensitivity, const long *input, long *output) in inv_convert_to_body_with_scale() argument 642 output[0] = inv_q30_mult(input[orientation & 0x03] * in inv_convert_to_body_with_scale() [all …]
|
D | ml_math_func.h | 31 float output; member 94 void inv_convert_to_body(unsigned short orientation, const long *input, long *output); 95 void inv_convert_to_chip(unsigned short orientation, const long *input, long *output); 96 …_to_body_with_scale(unsigned short orientation, long sensitivity, const long *input, long *output);
|
/hardware/libhardware_legacy/include/hardware_legacy/ |
D | AudioPolicyInterface.h | 100 virtual status_t startOutput(audio_io_handle_t output, 104 virtual status_t stopOutput(audio_io_handle_t output, 108 virtual void releaseOutput(audio_io_handle_t output) = 0; 206 virtual status_t closeOutput(audio_io_handle_t output) = 0; 209 virtual status_t suspendOutput(audio_io_handle_t output) = 0; 211 virtual status_t restoreOutput(audio_io_handle_t output) = 0; 231 …mVolume(AudioSystem::stream_type stream, float volume, audio_io_handle_t output, int delayMs = 0) … 235 virtual status_t setStreamOutput(AudioSystem::stream_type stream, audio_io_handle_t output) = 0;
|
D | AudioPolicyManagerBase.h | 96 virtual status_t startOutput(audio_io_handle_t output, 99 virtual status_t stopOutput(audio_io_handle_t output, 102 virtual void releaseOutput(audio_io_handle_t output); 361 uint32_t setOutputDevice(audio_io_handle_t output, 379 …virtual float computeVolume(int stream, int index, audio_io_handle_t output, audio_devices_t devic… 382 …status_t checkAndSetVolume(int stream, int index, audio_io_handle_t output, audio_devices_t device… 385 …void applyStreamVolumes(audio_io_handle_t output, audio_devices_t device, int delayMs = 0, bool fo… 390 audio_io_handle_t output, 397 audio_io_handle_t output, 422 void closeOutput(audio_io_handle_t output); [all …]
|
/hardware/invensense/65xx/libsensors_iio/software/core/mllite/ |
D | ml_math_func.c | 613 void inv_convert_to_body(unsigned short orientation, const long *input, long *output) in inv_convert_to_body() argument 615 output[0] = input[orientation & 0x03] * SIGNSET(orientation & 0x004); in inv_convert_to_body() 616 output[1] = input[(orientation>>3) & 0x03] * SIGNSET(orientation & 0x020); in inv_convert_to_body() 617 output[2] = input[(orientation>>6) & 0x03] * SIGNSET(orientation & 0x100); in inv_convert_to_body() 625 void inv_convert_to_chip(unsigned short orientation, const long *input, long *output) in inv_convert_to_chip() argument 627 output[orientation & 0x03] = input[0] * SIGNSET(orientation & 0x004); in inv_convert_to_chip() 628 output[(orientation>>3) & 0x03] = input[1] * SIGNSET(orientation & 0x020); in inv_convert_to_chip() 629 output[(orientation>>6) & 0x03] = input[2] * SIGNSET(orientation & 0x100); in inv_convert_to_chip() 640 …t_to_body_with_scale(unsigned short orientation, long sensitivity, const long *input, long *output) in inv_convert_to_body_with_scale() argument 642 output[0] = inv_q30_mult(input[orientation & 0x03] * in inv_convert_to_body_with_scale() [all …]
|
D | ml_math_func.h | 31 float output; member 94 void inv_convert_to_body(unsigned short orientation, const long *input, long *output); 95 void inv_convert_to_chip(unsigned short orientation, const long *input, long *output); 96 …_to_body_with_scale(unsigned short orientation, long sensitivity, const long *input, long *output);
|
/hardware/qcom/camera/QCamera2/stack/mm-jpeg-interface/test/ |
D | mm_jpeg_test.c | 73 buffer_test_t output; member 190 p_obj->output.size = size * 3/2; in encode_init() 191 rc = mm_jpeg_test_alloc(&p_obj->output, 0); in encode_init() 209 p_params->dest_buf[0].buf_size = p_obj->output.size; in encode_init() 210 p_params->dest_buf[0].buf_vaddr = p_obj->output.addr; in encode_init() 211 p_params->dest_buf[0].fd = p_obj->output.p_pmem_fd; in encode_init() 305 mm_jpeg_test_free(&jpeg_obj.output); in encode_test()
|
/hardware/libhardware/modules/audio/ |
D | audio_policy.c | 108 static int ap_start_output(struct audio_policy *pol, audio_io_handle_t output, in ap_start_output() argument 114 static int ap_stop_output(struct audio_policy *pol, audio_io_handle_t output, in ap_stop_output() argument 121 audio_io_handle_t output) in ap_release_output() argument 204 audio_io_handle_t output, in ap_register_effect() argument
|
/hardware/qcom/audio/legacy/alsa_sound/ |
D | audio_policy_hal.cpp | 151 static int ap_start_output(struct audio_policy *pol, audio_io_handle_t output, in ap_start_output() argument 155 return qap->apm->startOutput(output, (AudioSystem::stream_type)stream, in ap_start_output() 159 static int ap_stop_output(struct audio_policy *pol, audio_io_handle_t output, in ap_stop_output() argument 163 return qap->apm->stopOutput(output, (AudioSystem::stream_type)stream, in ap_stop_output() 168 audio_io_handle_t output) in ap_release_output() argument 171 qap->apm->releaseOutput(output); in ap_release_output()
|
/hardware/qcom/audio/visualizer/ |
D | offload_visualizer.c | 225 output_context_t *get_output(audio_io_handle_t output) { in get_output() argument 232 if (out_ctxt->handle == output) { in get_output() 239 void add_effect_to_output(output_context_t * output, effect_context_t *context) { in add_effect_to_output() argument 242 list_for_each(fx_node, &output->effects_list) { in add_effect_to_output() 249 list_add_tail(&output->effects_list, &context->output_node); in add_effect_to_output() 252 void remove_effect_from_output(output_context_t * output, effect_context_t *context) { in remove_effect_from_output() argument 255 list_for_each(fx_node, &output->effects_list) { in remove_effect_from_output() 408 int visualizer_hal_start_output(audio_io_handle_t output) { in visualizer_hal_start_output() argument 419 if (get_output(output) != NULL) { in visualizer_hal_start_output() 426 out_ctxt->handle = output; in visualizer_hal_start_output() [all …]
|
/hardware/invensense/60xx/mlsdk/mllite/ |
D | compass.c | 185 static int update(yas_filter_handle_t *t, float *input, float *output) in update() argument 189 if (t == NULL || input == NULL || output == NULL) { in update() 194 output[i] = adaptive_filter_filter(&t->adap_filter[i], input[i]); in update() 195 output[i] = thresh_filter_filter(&t->thresh_filter[i], output[i]); in update()
|
D | compass.h | 69 int (*update)(yas_filter_handle_t *t, float *input, float *output);
|
/hardware/ti/wlan/mac80211/ti-utils/ini_files/127x/ |
D | TQS_D_1.0.ini | 32 …Unsigned; Source: Customer; Comment: This parameter is used to align the output power to a differe… 38 …Unsigned; Source: Customer; Comment: This parameter is used to align the output power to a differe… 51 …mat: Signed; Source: TI; Comment: Reference output power that produces given reference power detec… 58 …; Comment: The purpose of this table is to allow clipping of the maximum output power on certain c… 59 …; Comment: The purpose of this table is to allow clipping of the maximum output power on certain c… 67 …mat: Signed; Source: TI; Comment: Reference output power that produces given reference power detec…
|
D | TQS_D_1.7.ini | 32 …Unsigned; Source: Customer; Comment: This parameter is used to align the output power to a differe… 38 …Unsigned; Source: Customer; Comment: This parameter is used to align the output power to a differe… 51 …mat: Signed; Source: TI; Comment: Reference output power that produces given reference power detec… 58 …; Comment: The purpose of this table is to allow clipping of the maximum output power on certain c… 59 …; Comment: The purpose of this table is to allow clipping of the maximum output power on certain c… 67 …mat: Signed; Source: TI; Comment: Reference output power that produces given reference power detec…
|
D | TQS_S_2.6.ini | 32 …Unsigned; Source: Customer; Comment: This parameter is used to align the output power to a differe… 48 …mat: Signed; Source: TI; Comment: Reference output power that produces given reference power detec… 55 …; Comment: The purpose of this table is to allow clipping of the maximum output power on certain c… 56 …; Comment: The purpose of this table is to allow clipping of the maximum output power on certain c…
|
D | TQS_S_2.5.ini | 32 …Unsigned; Source: Customer; Comment: This parameter is used to align the output power to a differe… 48 …mat: Signed; Source: TI; Comment: Reference output power that produces given reference power detec… 55 …; Comment: The purpose of this table is to allow clipping of the maximum output power on certain c… 56 …; Comment: The purpose of this table is to allow clipping of the maximum output power on certain c…
|
D | RFMD_S_3.5.ini | 32 …Unsigned; Source: Customer; Comment: This parameter is used to align the output power to a differe… 48 …mat: Signed; Source: TI; Comment: Reference output power that produces given reference power detec… 55 …; Comment: The purpose of this table is to allow clipping of the maximum output power on certain c… 56 …; Comment: The purpose of this table is to allow clipping of the maximum output power on certain c…
|
/hardware/ti/wlan/mac80211/config/ |
D | TQS_D_1.7.ini | 37 …Unsigned; Source: Customer; Comment: This parameter is used to align the output power to a differe… 42 …Unsigned; Source: Customer; Comment: This parameter is used to align the output power to a differe… 54 …mat: Signed; Source: TI; Comment: Reference output power that produces given reference power detec… 61 …; Comment: The purpose of this table is to allow clipping of the maximum output power on certain c… 62 …; Comment: The purpose of this table is to allow clipping of the maximum output power on certain c… 72 …mat: Signed; Source: TI; Comment: Reference output power that produces given reference power detec… 79 …; Comment: The purpose of this table is to allow clipping of the maximum output power on certain c…
|
/hardware/ti/wlan/mac80211/ti-utils/ini_files/128x/ |
D | TQS_D_1.7.ini | 37 …Unsigned; Source: Customer; Comment: This parameter is used to align the output power to a differe… 42 …Unsigned; Source: Customer; Comment: This parameter is used to align the output power to a differe… 54 …mat: Signed; Source: TI; Comment: Reference output power that produces given reference power detec… 61 …; Comment: The purpose of this table is to allow clipping of the maximum output power on certain c… 62 …; Comment: The purpose of this table is to allow clipping of the maximum output power on certain c… 72 …mat: Signed; Source: TI; Comment: Reference output power that produces given reference power detec… 79 …; Comment: The purpose of this table is to allow clipping of the maximum output power on certain c…
|
D | TQS_D_1.0.ini | 37 …Unsigned; Source: Customer; Comment: This parameter is used to align the output power to a differe… 42 …Unsigned; Source: Customer; Comment: This parameter is used to align the output power to a differe… 54 …mat: Signed; Source: TI; Comment: Reference output power that produces given reference power detec… 61 …; Comment: The purpose of this table is to allow clipping of the maximum output power on certain c… 62 …; Comment: The purpose of this table is to allow clipping of the maximum output power on certain c… 72 …mat: Signed; Source: TI; Comment: Reference output power that produces given reference power detec… 79 …; Comment: The purpose of this table is to allow clipping of the maximum output power on certain c…
|