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

1 2 3

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
mpu401.h 5 * Header file for MPU-401 and compatible cards
29 #define MPU401_HW_SB 2 /* SoundBlaster MPU-401 UART */
30 #define MPU401_HW_ES1688 3 /* AudioDrive ES1688 MPU-401 UART */
34 #define MPU401_HW_ES18XX 7 /* AudioDrive ES18XX MPU-401 UART */
42 #define MPU401_HW_CMIPCI 15 /* CMIPCI MPU-401 UART */
72 unsigned long port; /* base port of MPU-401 chip */
75 int irq; /* IRQ number of MPU-401 chip (-1 = poll) */
81 int (*open_input) (struct snd_mpu401 * mpu);
82 void (*close_input) (struct snd_mpu401 * mpu);
83 int (*open_output) (struct snd_mpu401 * mpu);
    [all...]
snd_wavefront.h 93 char interrupts_are_midi; /* h/w MPU interrupts enabled ? */
106 struct pnp_dev *mpu; member in struct:_snd_wavefront_card
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
mpu401.h 5 * Header file for MPU-401 and compatible cards
29 #define MPU401_HW_SB 2 /* SoundBlaster MPU-401 UART */
30 #define MPU401_HW_ES1688 3 /* AudioDrive ES1688 MPU-401 UART */
34 #define MPU401_HW_ES18XX 7 /* AudioDrive ES18XX MPU-401 UART */
42 #define MPU401_HW_CMIPCI 15 /* CMIPCI MPU-401 UART */
72 unsigned long port; /* base port of MPU-401 chip */
75 int irq; /* IRQ number of MPU-401 chip (-1 = poll) */
81 int (*open_input) (struct snd_mpu401 * mpu);
82 void (*close_input) (struct snd_mpu401 * mpu);
83 int (*open_output) (struct snd_mpu401 * mpu);
    [all...]
snd_wavefront.h 93 char interrupts_are_midi; /* h/w MPU interrupts enabled ? */
106 struct pnp_dev *mpu; member in struct:_snd_wavefront_card
  /hardware/invensense/libsensors_iio/software/simple_apps/gesture_test/
inv_gesture_test.c 68 } mpu; variable in typeref:struct:sysfs_attrbs
149 dptr = (char**)&mpu;
159 // get proper (in absolute/relative) IIO path & build MPU's sysfs paths
162 sprintf(mpu.enable, "%s%s", sysfs_path, "/buffer/enable");
163 sprintf(mpu.power_state, "%s%s", sysfs_path, "/power_state");
164 sprintf(mpu.dmp_on,"%s%s", sysfs_path, "/dmp_on");
165 sprintf(mpu.dmp_int_on, "%s%s", sysfs_path, "/dmp_int_on");
166 sprintf(mpu.self_test, "%s%s", sysfs_path, "/self_test");
167 sprintf(mpu.dmp_firmware, "%s%s", sysfs_path, "/dmp_firmware");
168 sprintf(mpu.firmware_loaded, "%s%s", sysfs_path, "/firmware_loaded")
    [all...]
  /hardware/invensense/libsensors_iio/software/simple_apps/self_test/
inv_self_test.c 69 } mpu; variable in typeref:struct:sysfs_attrbs
152 dptr = (char**)&mpu;
162 // get proper (in absolute/relative) IIO path & build MPU's sysfs paths
165 sprintf(mpu.enable, "%s%s", sysfs_path, "/buffer/enable");
166 sprintf(mpu.power_state, "%s%s", sysfs_path, "/power_state");
167 sprintf(mpu.dmp_on,"%s%s", sysfs_path, "/dmp_on");
168 sprintf(mpu.self_test, "%s%s", sysfs_path, "/self_test");
169 sprintf(mpu.temperature, "%s%s", sysfs_path, "/temperature");
171 sprintf(mpu.gyro_enable, "%s%s", sysfs_path, "/gyro_enable");
172 sprintf(mpu.gyro_x_bias, "%s%s", sysfs_path, "/in_anglvel_x_calibbias")
    [all...]
  /hardware/invensense/mlsdk/platform/linux/kernel/
slaveirq.h 22 #include <linux/mpu.h>
timerirq.h 22 #include <linux/mpu.h>
  /external/iproute2/tc/
tc_core.c 90 unsigned tc_adjust_size(unsigned sz, unsigned mpu, enum link_layer linklayer)
92 if (sz < mpu)
93 sz = mpu;
116 unsigned mpu = r->mpu; local
128 sz = tc_adjust_size((i + 1) << cell_log, mpu, linklayer);
147 if (linklayer <= LINKLAYER_ETHERNET && s->mpu == 0) {
172 sz = tc_adjust_size((i + 1) << s->cell_log, s->mpu, linklayer);
q_tbf.c 45 unsigned buffer=0, mtu=0, mpu=0, latency=0; local
101 } else if (strcmp(*argv, "mpu") == 0) {
103 if (mpu) {
104 fprintf(stderr, "Double \"mpu\" spec\n");
107 if (get_size(&mpu, *argv)) {
108 explain1("mpu");
190 opt.rate.mpu = mpu;
199 opt.peakrate.mpu = mpu;
    [all...]
tc_stab.c 33 "Usage: ... stab [ mtu BYTES ] [ tsize SLOTS ] [ mpu BYTES ] \n"
37 " mpu : minimum packet size used in rate computations\n"
47 return s->linklayer >= LINKLAYER_ETHERNET || s->mpu != 0 ||
73 } else if (matches(*argv, "mpu") == 0) {
75 if (s.mpu)
76 duparg("mpu", *argv);
77 if (get_u32(&s.mpu, *argv, 10)) {
78 invarg("mpu", "invalid mpu");
137 if (s.mpu)
    [all...]
q_htb.c 37 "... class add ... htb rate R1 [burst B1] [mpu B] [overhead O]\n"
42 " mpu minimum packet size used in rate computations\n"
109 unsigned short mpu = 0; local
128 } else if (matches(*argv, "mpu") == 0) {
130 if (get_u16(&mpu, *argv, 10)) {
131 explain1("mpu"); return -1;
217 opt.ceil.mpu = mpu;
218 opt.rate.mpu = mpu;
    [all...]
m_police.c 136 unsigned buffer=0, mtu=0, mpu=0; local
182 } else if (strcmp(*argv, "mpu") == 0) {
184 if (mpu) {
185 fprintf(stderr, "Double \"mpu\" spec\n");
188 if (get_size(&mpu, *argv)) {
189 explain1("mpu");
278 p.rate.mpu = mpu;
288 p.peakrate.mpu = mpu;
    [all...]
q_cbq.c 31 fprintf(stderr, " [ allot BYTES ] [ mpu BYTES ] [ weight RATE ]\n");
40 fprintf(stderr, "Usage: ... cbq bandwidth BPS avpkt BYTES [ mpu BYTES ]\n");
55 unsigned mpu=0, avpkt=0, allot=0; local
105 } else if (matches(*argv, "mpu") == 0) {
107 if (get_size(&mpu, *argv)) {
108 explain1("mpu");
152 r.mpu = mpu;
190 unsigned mpu=0; local
304 } else if (matches(*argv, "mpu") == 0)
    [all...]
  /hardware/invensense/libsensors_iio/
MPLSensor.cpp 228 LOGV_IF(EXTRA_VERBOSE, "HAL:gyro temperature path: %s", mpu.temperature);
229 gyro_temperature_fd = open(mpu.temperature, O_RDONLY);
234 "HAL:temperature_fd opened: %s", mpu.temperature);
242 "HAL:sysfs:cat %s (%lld)", mpu.accel_fsr, getTimestamp());
244 fd = open(mpu.accel_fsr, O_RDONLY);
377 write_sysfs_int(mpu.in_timestamp_en, 1);
381 mpu.trigger_name, getTimestamp());
382 tempFp = fopen(mpu.trigger_name, "r");
393 iio_trigger_name, mpu.current_trigger, getTimestamp());
394 tempFp = fopen(mpu.current_trigger, "w")
    [all...]
  /external/iproute2/testsuite/tests/
cbq.t 3 $TC qdisc add dev $DEV root handle 10:0 cbq bandwidth 100Mbit avpkt 1400 mpu 64
8 $TC qdisc add dev $DEV root handle 10:0 cbq bandwidth 100Mbit avpkt 1400 mpu 64
policer 3 $TC qdisc add dev $DEV root handle 10:0 cbq bandwidth 100Mbit avpkt 1400 mpu 64
10 $TC qdisc add dev $DEV root handle 10:0 cbq bandwidth 100Mbit avpkt 1400 mpu 64
cls-testbed.t 17 cbq bandwidth 100Mbit avpkt 1400 mpu 64
  /hardware/invensense/mlsdk/platform/include/
mlsl.h 55 #include <linux/mpu.h>
114 * It is called by the MPL to write a single byte of data to the MPU.
  /hardware/invensense/libsensors_iio/software/core/mpl/build/
filelist.mk 4 HEADERS := $(MPL_DIR)/mpu.h
  /hardware/invensense/mlsdk/mllite/
mldl.h 29 #include <linux/mpu.h>
  /bionic/libc/kernel/common/linux/
pkt_sched.h 69 unsigned short mpu; member in struct:tc_ratespec
81 unsigned int mpu; member in struct:tc_sizespec
  /external/iproute2/examples/
cbqinit.eth1 11 # mpu is minimal packet size.
14 $BANDWIDTH avpkt 1000 mpu 64
  /external/iproute2/include/linux/
pkt_sched.h 81 unsigned short mpu; member in struct:tc_ratespec
93 unsigned int mpu; member in struct:tc_sizespec
  /external/kernel-headers/original/linux/
pkt_sched.h 84 unsigned short mpu; member in struct:tc_ratespec
96 unsigned int mpu; member in struct:tc_sizespec

Completed in 498 milliseconds

1 2 3