Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:USB_PAGE_SIZE
(Results
1 - 6
of
6
) sorted by relevance
/third_party/FreeBSD/stand/usb/
H
A
D
usb_busdma_loader.c
87
page += (offset /
USB_PAGE_SIZE
);
in usbd_get_page()
89
offset %=
USB_PAGE_SIZE
;
in usbd_get_page()
91
res->length =
USB_PAGE_SIZE
- offset;
in usbd_get_page()
247
pg->physaddr = phys & ~(
USB_PAGE_SIZE
- 1);
in usb_pc_common_mem_cb()
248
rem = phys & (
USB_PAGE_SIZE
- 1);
in usb_pc_common_mem_cb()
253
for (off =
USB_PAGE_SIZE
; off < length; off +=
USB_PAGE_SIZE
) {
in usb_pc_common_mem_cb()
255
pg->physaddr = (phys + off) & ~(
USB_PAGE_SIZE
- 1);
in usb_pc_common_mem_cb()
549
pg += (frlength_0 /
USB_PAGE_SIZE
);
in usb_bdma_work_loop()
556
pg += (xfer->frlengths[nframes] /
USB_PAGE_SIZE
);
in usb_bdma_work_loop()
[all...]
/third_party/FreeBSD/sys/dev/usb/controller/
H
A
D
ehci.h
72
#if ((
USB_PAGE_SIZE
< EHCI_PAGE_SIZE) || (EHCI_PAGE_SIZE == 0) || \
73
(
USB_PAGE_SIZE
< EHCI_ITD_ALIGN) || (EHCI_ITD_ALIGN == 0) || \
74
(
USB_PAGE_SIZE
< EHCI_SITD_ALIGN) || (EHCI_SITD_ALIGN == 0) || \
75
(
USB_PAGE_SIZE
< EHCI_QTD_ALIGN) || (EHCI_QTD_ALIGN == 0) || \
76
(
USB_PAGE_SIZE
< EHCI_QH_ALIGN) || (EHCI_QH_ALIGN == 0) || \
77
(
USB_PAGE_SIZE
< EHCI_FSTN_ALIGN) || (EHCI_FSTN_ALIGN == 0))
H
A
D
xhci.h
58
#define XHCI_SCRATCH_BUFFER_ALIGN
USB_PAGE_SIZE
332
#if (
USB_PAGE_SIZE
< 4096)
341
((
USB_PAGE_SIZE
< XHCI_TD_PAYLOAD_MAX) ?
USB_PAGE_SIZE
: XHCI_TD_PAYLOAD_MAX)
H
A
D
xhci.c
356
ret = memset_s(pdctxa,
USB_PAGE_SIZE
, 0, sizeof(*pdctxa));
in xhci_start_controller()
397
ret = memset_s(phwr,
USB_PAGE_SIZE
, 0, sizeof(*phwr));
in xhci_start_controller()
/third_party/FreeBSD/sys/dev/usb/
H
A
D
usb_busdma.h
33
#define
USB_PAGE_SIZE
PAGE_SIZE /* use system PAGE_SIZE */
macro
55
* address of a memory page having size
USB_PAGE_SIZE
.
H
A
D
usb_transfer.c
223
n_dma_pg = (2 + (size /
USB_PAGE_SIZE
));
in usbd_transfer_setup_sub_malloc()
225
} else if (size >=
USB_PAGE_SIZE
) {
in usbd_transfer_setup_sub_malloc()
231
n_obj = (
USB_PAGE_SIZE
/ size);
in usbd_transfer_setup_sub_malloc()
761
* z = ((a /
USB_PAGE_SIZE
) + 2) + ((b /
USB_PAGE_SIZE
) + 2) +
in usbd_transfer_setup_sub()
762
* ((c /
USB_PAGE_SIZE
) + 2);
in usbd_transfer_setup_sub()
770
* z <= ((parm->bufsize /
USB_PAGE_SIZE
) + (3*2));
in usbd_transfer_setup_sub()
776
parm->dma_page_ptr += (parm->bufsize /
USB_PAGE_SIZE
);
in usbd_transfer_setup_sub()
Completed in 12 milliseconds