HomeSort by relevance Sort by last modified time
    Searched defs:usb (Results 1 - 16 of 16) sorted by null

  /external/opencore/codecs_v2/audio/aac/dec/src/
sbr_reset_dec.cpp 141 Int usb; local
155 &usb);
168 usb,
209 usb = sbrDec->FreqBandTable[LOW_RES][sbrDec->NSfb[LOW_RES]];
212 sbrDec->highSubband = usb;
213 sbrDec->noSubbands = usb - lsb;
233 tmp_q1 = pv_log2((usb << 20) / lsb);
ps_stereo_processing.cpp 163 Int32 usb; local
186 usb = pms->usb;
324 maxSubband = min(usb, maxSubband);
s_ps_dec.h 70 Int32 usb; member in struct:PS_DEC
sbr_generate_high_freq.cpp 227 Int32 usb = v_k_master[numMaster]; /* Stop subband related to the synthesis filterbank */ local
352 while (targetStopBand < usb)
393 goalSb = usb;
  /frameworks/base/media/libstagefright/codecs/aacdec/
sbr_reset_dec.cpp 141 Int usb; local
155 &usb);
168 usb,
209 usb = sbrDec->FreqBandTable[LOW_RES][sbrDec->NSfb[LOW_RES]];
212 sbrDec->highSubband = usb;
213 sbrDec->noSubbands = usb - lsb;
233 tmp_q1 = pv_log2((usb << 20) / lsb);
ps_stereo_processing.cpp 163 Int32 usb; local
186 usb = pms->usb;
324 maxSubband = min(usb, maxSubband);
s_ps_dec.h 70 Int32 usb; member in struct:PS_DEC
sbr_generate_high_freq.cpp 227 Int32 usb = v_k_master[numMaster]; /* Stop subband related to the synthesis filterbank */ local
352 while (targetStopBand < usb)
393 goalSb = usb;
  /system/core/adb/
usb_linux_client.c 47 struct usb_handle *usb = (struct usb_handle *)x; local
51 // wait until the USB device needs opening
52 adb_mutex_lock(&usb->lock);
53 while (usb->fd != -1)
54 adb_cond_wait(&usb->notify, &usb->lock);
55 adb_mutex_unlock(&usb->lock);
72 usb->fd = fd;
75 register_usb_transport(usb, 0, 1);
123 // the enabling of the adb USB function in the kernel
    [all...]
usb_libusb.c 329 D("register_device(): Registering %p [%s] as USB transport\n",
332 struct usb_handle *usb= NULL; local
334 usb = calloc(1, sizeof(struct usb_handle));
335 memcpy(usb, uh, sizeof(struct usb_handle));
336 strcpy(usb->serial, uh->serial);
338 adb_cond_init(&usb->notify, 0);
339 adb_mutex_init(&usb->lock, 0);
343 usb->next = &handle_list;
344 usb->prev = handle_list.prev;
345 usb->prev->next = usb
358 struct usb_handle *usb= NULL; local
562 struct usb_handle *usb= NULL; local
    [all...]
usb_windows.c 29 /** Structure usb_handle describes our connection to the usb device via
34 /// Previous entry in the list of opened usb handles
37 /// Next entry in the list of opened usb handles
40 /// Handle to USB interface
43 /// Handle to USB read pipe (endpoint)
46 /// Handle to USB write pipe (endpoint)
59 /// List of opened usb handles
65 /// Locker for the list of opened usb handles
68 /// Checks if there is opened usb handle in handle_list for this device.
71 /// Checks if there is opened usb handle in handle_list for this device
117 usb_handle* usb; local
    [all...]
usb_linux.c 33 #include <linux/usb/ch9.h>
45 /* usb scan debugging is waaaay too verbose */
87 usb_handle *usb; local
90 for(usb = handle_list.next; usb != &handle_list; usb = usb->next){
91 if(!strcmp(usb->fname, dev_name)) {
93 usb->mark = 1;
104 usb_handle *usb; local
539 usb_handle* usb = 0; local
    [all...]
adb.h 147 ** connects through TCP (for the emulator), while a "usb transport" through
148 ** USB (for real devices)
179 /* usb handle or socket fd as needed */
180 usb_handle *usb; member in struct:atransport
266 void init_usb_transport(atransport *t, usb_handle *usb, int state);
280 void unregister_usb_transport(usb_handle *usb);
372 /* usb host/client interface */
380 /* used for USB device detection */
  /system/core/fastboot/
usbtest.c 36 #include "usb.h"
89 int test_null(usb_handle *usb)
98 if(usb_write(usb, buf, arg_size) != arg_size) {
108 int test_zero(usb_handle *usb)
116 if(usb_read(usb, buf, arg_size) != arg_size) {
130 int (*test)(usb_handle *usb);
180 usb_handle *usb; local
193 usb = usb_open(tests[i].match);
195 if(usb == 0) {
200 if(tests[i].test(usb)) {
    [all...]
usb_linux.c 46 #include <linux/usb/ch9.h>
52 #include "usb.h"
198 usb_handle *usb = 0; local
211 while((de = readdir(busdir)) && (usb == 0)) {
219 while((de = readdir(devdir)) && (usb == 0)) {
239 usb = calloc(1, sizeof(usb_handle));
240 strcpy(usb->fname, devname);
241 usb->ep_in = in;
242 usb->ep_out = out;
243 usb->desc = fd
    [all...]
fastboot.c 53 static usb_handle *usb = 0; variable
186 static usb_handle *usb = 0; local
189 if(usb) return usb;
192 usb = usb_open(match_fastboot);
193 if(usb) return usb;
203 // We don't actually open a USB device here,
232 " -i <vendor id> specify a custom USB vendor id\n"
702 usb = open_device()
    [all...]

Completed in 93 milliseconds