HomeSort by relevance Sort by last modified time
    Searched defs:accel (Results 1 - 25 of 107) sorted by null

1 2 3 4 5

  /external/qemu/android/
cpu_accelerator.cpp 23 android::CpuAccelerator accel = android::GetCurrentCpuAccelerator(); local
31 return accel != android::CPU_ACCELERATOR_NONE;
  /external/qemu/android/emulation/
CpuAccelerator_unittest.cpp 40 CpuAccelerator accel = GetCurrentCpuAccelerator(); local
43 switch (accel) {
57 ASSERT_FALSE(1) << "Invalid accelerator value: " << accel;
CpuAccelerator.cpp 62 CpuAccelerator accel; member in struct:android::__anon33715::GlobalState
306 return g->accel;
312 g->accel = CPU_ACCELERATOR_KVM;
316 g->accel = CPU_ACCELERATOR_HAX;
324 return g->accel;
338 void SetCurrentCpuAcceleratorForTesting(CpuAccelerator accel,
343 g->accel = accel;
  /hardware/invensense/60xx/mlsdk/mllite/
mldl_cfg_mpu.c 61 struct ext_slave_platform_data *accel = &mldl_cfg->pdata->accel; local
86 if (mldl_cfg->accel) {
87 MPL_LOGD("slave_accel->suspend = %p\n", mldl_cfg->accel->suspend);
88 MPL_LOGD("slave_accel->resume = %p\n", mldl_cfg->accel->resume);
89 MPL_LOGD("slave_accel->read = %p\n", mldl_cfg->accel->read);
90 MPL_LOGD("slave_accel->type = %02x\n", mldl_cfg->accel->type);
92 mldl_cfg->accel->read_reg);
94 mldl_cfg->accel->read_len);
95 MPL_LOGD("slave_accel->endian = %02x\n", mldl_cfg->accel->endian)
    [all...]
mlBiasNoMotion.c 31 #include "accel.h"
160 long accel[3], temp; local
171 // We always run the accel low pass filter at the highest sample rate possible
172 result = inv_get_accel(accel);
189 inv_obj->accel_lpf[kk] += inv_q30_mult(gain, accel[kk]);
190 temp = accel[0] - inv_obj->accel_lpf[0];
203 // We have no motion according to accel
mldl_cfg.h 125 struct ext_slave_descr *accel; member in struct:mldl_cfg
175 mldl_cfg->accel, &mldl_cfg->pdata->accel,
227 mldl_cfg->accel, &mldl_cfg->pdata->accel);
279 data, mldl_cfg->accel,
280 &mldl_cfg->pdata->accel);
mlFIFO.c 56 #include "accel.h"
84 (1L << 14), (1L << 14), (1L << 14), (0), // Raw Accel, plus padding
87 (1L << 16), (1L << 16), (1L << 16), // Accel
88 (1L << 30), (1L << 30), (1L << 30), (1L << 30), // Quant Accel
89 (1L << 30), (1L << 30), (1L << 30), (1L << 30), //Quant Accel
276 // Special Case for Byte Ordering on Accel Data
279 switch (inv_get_dl_config()->accel->endian) {
334 // Special Case for Byte Ordering on Accel Data
337 switch (inv_get_dl_config()->accel->endian) {
834 * @brief Get the Decoded Accel Data
2100 long accel[3]; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
xorg_exa.h 27 boolean accel; member in struct:exa_context
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_exa.h 27 boolean accel; member in struct:exa_context
  /external/qemu/distrib/sdl-1.2.15/test/
testgl.c 452 int logo, int logocursor, int slowly, int bpp, float gamma, int noframe, int fsaa, int sync, int accel )
538 if ( accel ) {
576 if ( accel ) {
793 int accel = 0; local
829 if ( strcmp(argv[i], "-accel") == 0 ) {
830 ++accel;
837 "Usage: %s [-twice] [-logo] [-logocursor] [-slow] [-bpp n] [-gamma n] [-noframe] [-fsaa] [-accel] [-sync] [-fullscreen]\n",
843 RunGLTest(argc, argv, logo, logocursor, slowly, bpp, gamma, noframe, fsaa, sync, accel);
  /hardware/invensense/60xx/libsensors_iio/software/core/mllite/
hal_outputs.c 31 // int accuracy_accel; /**< Accel Accuracy */
76 long accel[3]; local
77 inv_get_accel_set(accel, accuracy, timestamp);
78 values[0] = accel[0] * ACCEL_CONVERSION;
79 values[1] = accel[1] * ACCEL_CONVERSION;
80 values[2] = accel[2] * ACCEL_CONVERSION;
90 * accel biases while at rest.
99 long gravity[3], accel[3]; local
102 inv_get_accel_set(accel, accuracy, &timestamp1);
104 accel[0] -= gravity[0] >> 14;
    [all...]
data_builder.h 19 /** This is a new sample of accel data */
112 struct inv_single_sensor_t accel; member in struct:inv_sensor_cal_t
184 inv_error_t inv_build_accel(const long *accel, int status,
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/playback/linux/
and_constructor.c 80 // accel setup
154 long accel[3]; local
157 int32_to_long(buffer, accel, 3);
158 inv_build_accel(accel, 0, ts);
319 // Set Accel Sample Rate in MPL in micro seconds
341 // Set Accel Sample Rate in MPL in micro seconds
351 // set accel sample rate in MPL in micro seconds
datalogger_outputs.c 109 struct inv_single_sensor_t *pa = &dl_out.sc.accel;
128 long accel[3]; local
129 inv_get_accel_set(accel, accuracy, timestamp);
131 values[0] = (float) -accel[0] / 65536.f;
132 values[1] = (float) -accel[1] / 65536.f;
133 values[2] = (float) -accel[2] / 65536.f;
272 struct inv_single_sensor_t *pa = &dl_out.sc.accel;
main.c 385 float accel[3]; local
386 inv_get_accel_float(accel);
387 PRINT_3ELM_ARRAY_FLOAT(10, 5, accel);
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/
hal_outputs.c 47 //int accuracy_accel; /**< Accel Accuracy */
81 long accel[3]; local
82 inv_get_accel_set(accel, accuracy, timestamp);
83 values[0] = accel[0] * ACCEL_CONVERSION;
84 values[1] = accel[1] * ACCEL_CONVERSION;
85 values[2] = accel[2] * ACCEL_CONVERSION;
90 MPL_LOGV("accel values:%f %f %f -%d -%lld", values[0], values[1],
97 * accel biases while at rest.
106 long gravity[3], accel[3]; local
109 inv_get_accel_set(accel, accuracy, timestamp);
257 long accel[3], quat_6_axis[4]; local
506 long accel[3]; local
    [all...]
data_builder.h 20 /** This is a new sample of accel data */
129 struct inv_single_sensor_t accel; member in struct:inv_sensor_cal_t
181 /** accel factory bias in chip frame, hardware units scaled by 2^16,
188 /** temperature when accel bias was stored. */
204 /** accel bias in chip frame, hardware units scaled by 2^16, +/- 2 gee
243 inv_error_t inv_build_accel(const long *accel, int status,
  /external/chromium_org/ui/views/controls/menu/
native_menu_win.cc 240 base::string16 accel; local
243 accel = label.substr(tab_pos);
248 if (!accel.empty())
249 DrawTextEx(dc, const_cast<wchar_t*>(accel.data()),
250 static_cast<int>(accel.size()), &rect,
  /hardware/invensense/6515/libsensors_iio/software/core/mllite/
data_builder.h 20 /** This is a new sample of accel data */
132 struct inv_single_sensor_t accel; member in struct:inv_sensor_cal_t
184 /** accel factory bias in chip frame, hardware units scaled by 2^16,
191 /** temperature when accel bias was stored. */
207 /** accel bias in chip frame, hardware units scaled by 2^16, +/- 2 gee
246 inv_error_t inv_build_accel(const long *accel, int status,
hal_outputs.c 47 //int accuracy_accel; /**< Accel Accuracy */
129 long accel[3]; local
130 inv_get_accel_set(accel, accuracy, timestamp);
131 values[0] = accel[0] * ACCEL_CONVERSION;
132 values[1] = accel[1] * ACCEL_CONVERSION;
133 values[2] = accel[2] * ACCEL_CONVERSION;
138 MPL_LOGV("accel values:%f %f %f -%d -%lld", values[0], values[1],
145 * accel biases while at rest.
154 long gravity[3], accel[3]; local
157 inv_get_accel_set(accel, accuracy, &timestamp1)
297 long accel[3]; local
550 long accel[3]; local
    [all...]
  /development/samples/LunarLander/src/com/example/android/lunarlander/
LunarView.java 730 double accel = PHYS_FIRE_ACCEL_SEC * elapsedFiring; local
733 ddx = Math.sin(radians) * accel;
734 ddy += Math.cos(radians) * accel;
    [all...]
  /frameworks/av/services/audioflinger/
Effects.cpp 892 uint32_t accel = flags & EFFECT_FLAG_HW_ACC_MASK; local
893 if (accel) {
895 switch (accel) {
    [all...]
  /frameworks/native/opengl/tests/gl2_cameraeye/src/com/android/gl2cameraeye/
GL2CameraEye.java 362 float[] accel = new float[3]; local
363 accel[0] = totalForce[0]/mass;
364 accel[1] = totalForce[1]/mass;
365 accel[2] = totalForce[2]/mass;
368 mVel[0] = mVel[0] + accel[0]*deltaT;
369 mVel[1] = mVel[1] + accel[1]*deltaT;
370 mVel[2] = mVel[2] + accel[2]*deltaT;
  /hardware/invensense/60xx/mlsdk/platform/include/linux/
mpu.h 282 * @accel: Accel platform data
296 struct ext_slave_platform_data accel; member in struct:mpu_platform_data
  /packages/apps/DeskClock/src/com/android/deskclock/
Utils.java 331 AccelerateInterpolator accel = new AccelerateInterpolator(); local
334 shrink.setDuration(FADE_TIME).setInterpolator(accel);
335 fadeout.setDuration(FADE_TIME).setInterpolator(accel);

Completed in 960 milliseconds

1 2 3 4 5