Home
last modified time | relevance | path

Searched refs:into (Results 1 – 25 of 3514) sorted by relevance

12345678910>>...141

/OK3568_Linux_fs/kernel/include/soc/arc/
H A Daux.h34 #define READ_BCR(reg, into) \ argument
38 if (sizeof(tmp) == sizeof(into)) { \
39 into = *((typeof(into) *)&tmp); \
46 #define WRITE_AUX(reg, into) \ argument
49 if (sizeof(tmp) == sizeof(into)) { \
50 tmp = (*(unsigned int *)&(into)); \
/OK3568_Linux_fs/kernel/tools/testing/radix-tree/
H A Dtest.c121 unsigned long into; in item_gang_check_present() local
123 for (into = 0; into < nr; ) { in item_gang_check_present()
128 if (nr_to_find > (nr - into)) in item_gang_check_present()
129 nr_to_find = nr - into; in item_gang_check_present()
132 start + into, nr_to_find); in item_gang_check_present()
135 assert(items[i]->index == start + into + i); in item_gang_check_present()
136 into += hop; in item_gang_check_present()
147 unsigned long into = 0; in item_full_scan() local
154 while ((nfound = radix_tree_gang_lookup(root, (void **)items, into, in item_full_scan()
163 into = this_index; in item_full_scan()
/OK3568_Linux_fs/buildroot/package/opencv3/
H A DConfig.in29 reconstruction) module into the OpenCV build.
38 into the OpenCV build.
45 multi-dimensional spaces) module into the OpenCV build.
54 into the OpenCV build.
121 Include opencv_imgcodecs (image codecs) module into the
128 Include opencv_imgproc (image processing) module into the
135 Include opencv_ml (machine learning) module into the OpenCV
145 Include opencv_objdetect (object detection) module into the
152 Include opencv_photo (computational photography) module into
162 Include opencv_python module into the OpenCV build. No
[all …]
/OK3568_Linux_fs/external/xserver/xkb/
H A DXKBMAlloc.c225 XkbCopyKeyType(XkbKeyTypePtr from, XkbKeyTypePtr into) in XkbCopyKeyType() argument
227 if ((!from) || (!into)) in XkbCopyKeyType()
229 free(into->map); in XkbCopyKeyType()
230 into->map = NULL; in XkbCopyKeyType()
231 free(into->preserve); in XkbCopyKeyType()
232 into->preserve = NULL; in XkbCopyKeyType()
233 free(into->level_names); in XkbCopyKeyType()
234 into->level_names = NULL; in XkbCopyKeyType()
235 *into = *from; in XkbCopyKeyType()
236 if ((from->map) && (into->map_count > 0)) { in XkbCopyKeyType()
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-extended/mozjs/mozjs-78/
H A D0010-riscv-Set-march-correctly.patch29 - cmd.args.push(("-march=rv".to_owned() + arch).into());
34 + cmd.args.push(("-march=rv64gc").into());
35 + cmd.args.push("-mabi=lp64d".into());
37 + cmd.args.push(("-march=rv32gc").into());
38 + cmd.args.push("-mabi=ilp32d".into());
40 + cmd.args.push(("-march=rv".to_owned() + arch).into());
41 cmd.args.push("-mabi=lp64".into());
43 + cmd.args.push(("-march=rv".to_owned() + arch).into());
44 cmd.args.push("-mabi=ilp32".into());
46 + cmd.args.push("-mcmodel=medany".into());
/OK3568_Linux_fs/buildroot/package/opencv4/
H A DConfig.in31 reconstruction) module into the OpenCV build.
40 into the OpenCV build.
47 multi-dimensional spaces) module into the OpenCV build.
56 into the OpenCV build.
123 Include opencv_imgcodecs (image codecs) module into the
130 Include opencv_imgproc (image processing) module into the
137 Include opencv_ml (machine learning) module into the OpenCV
147 Include opencv_objdetect (object detection) module into the
154 Include opencv_photo (computational photography) module into
164 Include opencv_python module into the OpenCV build. No
[all …]
/OK3568_Linux_fs/external/rkwifibt/drivers/bluetooth_uart_driver/
H A DKconfig13 Say Y here to compile support for Bluetooth USB devices into the
24 Say Y here to compile support for Bluetooth SDIO devices into the
36 Say Y here to compile support for Bluetooth UART devices into the
91 Say Y here to compile support for HCI BCM203x devices into the
102 Say Y here to compile support for HCI BPA10x devices into the
115 Say Y here to compile support for HCI BFUSB devices into the
128 Say Y here to compile support for HCI DTL1 devices into the
142 Say Y here to compile support for HCI BT3C devices into the
155 Say Y here to compile support for HCI BlueCard devices into the
171 Say Y here to compile support for HCI UART devices into the
[all …]
/OK3568_Linux_fs/kernel/Documentation/admin-guide/pm/
H A Dsleep-states.rst34 I/O devices into low-power states (possibly lower-power than available in the
58 I/O devices into low-power states, which is done for :ref:`suspend-to-idle
60 are suspended during transitions into this state. For this reason, it should
79 energy savings as everything in the system is put into a low-power state, except
80 for memory, which should be placed into the self-refresh mode to retain its
89 suspended and put into low-power states. In many cases, all peripheral buses
118 It takes three system state changes to put it into hibernation and two system
122 creates a snapshot image of memory to be written into persistent storage. Next,
123 the system goes into a state in which the snapshot image can be saved, the image
124 is written out and finally the system goes into the target low-power state in
[all …]
/OK3568_Linux_fs/u-boot/arch/arm/cpu/armv7/
H A Dcache_v7_asm.S30 mov r3, r0, lsr #23 @ move LoC into position
54 ARM( orr r11, r10, r4, lsl r5 ) @ factor way and cache number into r11
56 THUMB( orr r11, r10, r6 ) @ factor way and cache number into r11
57 ARM( orr r11, r11, r9, lsl r2 ) @ factor index number into r11
59 THUMB( orr r11, r11, r6 ) @ factor index number into r11
101 mov r3, r0, lsr #23 @ move LoC into position
124 ARM( orr r11, r10, r4, lsl r5 ) @ factor way and cache number into r11
126 THUMB( orr r11, r10, r6 ) @ factor way and cache number into r11
127 ARM( orr r11, r11, r9, lsl r2 ) @ factor index number into r11
129 THUMB( orr r11, r11, r6 ) @ factor index number into r11
/OK3568_Linux_fs/kernel/Documentation/ABI/testing/
H A Dsysfs-firmware-turris-mox-rwtm5 Description: (Read) Board version burned into eFuses of this Turris Mox board.
12 Description: (Read) MAC addresses burned into eFuses of this Turris Mox board.
20 as pair to the ECDSA private key burned into eFuses of this
29 during manufacturing and burned into eFuses. Can be 512 or 1024.
36 Description: (Read) Serial number burned into eFuses of this Turris Mox device.
H A Dsysfs-ptp14 hardware clock registered into the PTP class driver
74 assignment may be changed by two writing numbers into
92 channel index followed by a "1" into the file.
94 index followed by a "0" into the file.
110 integers into the file: channel index, start time
121 events, write a "1" into the file. To disable events,
122 write a "0" into the file.
/OK3568_Linux_fs/kernel/drivers/accessibility/speakup/
H A DKconfig54 synthesizer. You can say y to build it into the kernel,
63 synthesizer. You can say y to build it into the kernel,
71 synthesizer. You can say y to build it into the kernel,
79 You can say y to build it into the kernel, or m to
87 synthesizer. You can say y to build it into the kernel,
96 synthesizer. You can say y to build it into the kernel,
105 (old) synthesizer. You can say y to build it into the
139 PC synthesizer. You can say y to build it into the
150 PC synthesizer. You can say y to build it into the
160 LT synthesizer. You can say y to build it into the
[all …]
/OK3568_Linux_fs/kernel/Documentation/trace/
H A Dhistogram-design.rst158 If a map_entry is unused, meaning no key has yet hashed into it, its | |
451 into the tracing_map_elts' .vars[] array containing variable values. | | |
592 just the index into the var_ref_vals[] array that caches the values of | |
735 index into the tracing_map_elt.vars[] array of the actual variable
765 var.idx (into tracing_map_elt.vars[]): 0
822 var.idx (into tracing_map_elt.vars[]): 0
843 var.idx (into tracing_map_elt.vars[]): 0
845 var_ref_idx (into hist_data->var_refs[]): 0
868 them to generate a new wakeup_latency event into the trace stream.
903 next_pid into the wakeup_latency synthetic event invocation, which
[all …]
/OK3568_Linux_fs/kernel/drivers/bluetooth/
H A DKconfig31 Say Y here to compile support for Bluetooth USB devices into the
85 Say Y here to compile support for Bluetooth SDIO devices into the
100 Say Y here to compile support for Bluetooth UART devices into the
269 Say Y here to compile support for HCI BCM203x devices into the
280 Say Y here to compile support for HCI BPA10x devices into the
293 Say Y here to compile support for HCI BFUSB devices into the
306 Say Y here to compile support for HCI DTL1 devices into the
320 Say Y here to compile support for HCI BT3C devices into the
333 Say Y here to compile support for HCI BlueCard devices into the
342 Say Y here to compile support for virtual HCI devices into the
[all …]
/OK3568_Linux_fs/u-boot/doc/
H A DREADME.falcon14 U-Boot is split into two parts: the SPL (Secondary Program Loader) and U-Boot
19 copies U-Boot image into the memory.
28 With Falcon Mode, this snapshot can be saved into persistent storage and SPL is
33 1. Boot the board into U-Boot.
34 After loading the desired legacy-format kernel image into memory (and DT as
39 2. Save the prepared snapshot into persistent media.
40 The address where to save it must be configured into board configuration
43 3. Boot the board into Falcon Mode. SPL will load the kernel and copy
116 or prepared FDT) from temporary storage in RAM into persistant storage
185 The parameters generated with this step can be saved into NAND at the offset
[all …]
/OK3568_Linux_fs/kernel/Documentation/vm/
H A Darch_pgtable_helpers.rst75 | ptep_set_wrprotect | Converts into a write protected PTE |
77 | ptep_set_access_flags | Converts into a more permissive PTE |
149 | pmdp_set_wrprotect | Converts into a write protected PMD |
151 | pmdp_set_access_flags | Converts into a more permissive PMD |
205 | pudp_set_wrprotect | Converts into a write protected PUD |
207 | pudp_set_access_flags | Converts into a more permissive PUD |
231 | huge_ptep_set_wrprotect | Converts into a write protected HugeTLB |
233 | huge_ptep_set_access_flags | Converts into a more permissive HugeTLB |
253 | make_migration_entry_read | Converts into read migration swapped entry |
/OK3568_Linux_fs/u-boot/board/wandboard/
H A DREADME20 Flashing U-Boot into the SD card
24 flashed into the SD card;
30 - Flash the u-boot.img image into the SD card:
34 - Insert the SD card into the slot located in the bottom of the board (same side
/OK3568_Linux_fs/kernel/drivers/block/paride/
H A DKconfig18 support into your kernel, you may answer Y here to build in the
34 support into your kernel, you may answer Y here to build in the
50 support into your kernel, you may answer Y here to build in the
64 support into your kernel, you may answer Y here to build in the
80 If you chose to build PARIDE support into your kernel, you may
105 support into your kernel, you may answer Y here to build in the
123 If you chose to build PARIDE support into your kernel, you may
142 If you chose to build PARIDE support into your kernel, you may
154 into your kernel, you may answer Y here to build in the protocol
165 into your kernel, you may answer Y here to build in the protocol
[all …]
/OK3568_Linux_fs/kernel/arch/mips/include/asm/mach-ip27/
H A Dkernel-entry-init.h36 li t0, 0x1c000 # Offset of text into node memory
37 dsll t1, NASID_SHFT # Shift text nasid into place
43 dsll t1, 6 # Get pfn into place
44 dsll t2, 6 # Get pfn into place
/OK3568_Linux_fs/kernel/Documentation/power/
H A Dpci.rst31 devices into states in which they draw less power (low-power states) at the
34 Usually, a device is put into a low-power state when it is underutilized or
36 again, it has to be put back into the "fully functional" state (full-power
41 PCI devices may be put into low-power states in two ways, by using the device
46 specific value into one of its standard configuration registers. The second
53 to put the device that sent it into the full-power state. However, the PCI Bus
92 programmed to go into it. The second one, D3cold, is the state that PCI devices
94 to program a PCI device to go into D3cold, although there may be a programmable
95 interface for putting the bus the device is on into a state in which Vcc is
111 programmatically put into D0. Thus the kernel can switch the device back and
[all …]
/OK3568_Linux_fs/device/rockchip/common/configs/
H A DConfig.in.extra-part87 bool "merged into rootfs"
89 Virtual parition that merged into rootfs.
165 bool "merged into rootfs"
167 Virtual parition that merged into rootfs.
238 bool "merged into rootfs"
240 Virtual parition that merged into rootfs.
311 bool "merged into rootfs"
313 Virtual parition that merged into rootfs.
384 bool "merged into rootfs"
386 Virtual parition that merged into rootfs.
/OK3568_Linux_fs/kernel/arch/mips/cavium-octeon/
H A DKconfig33 Enable locking parts of the kernel into the L2 cache.
40 Lock the low level TLB fast path into L2.
47 Lock the low level exception handler into L2.
54 Lock the low level interrupt handler into L2.
68 Lock the kernel's implementation of memcpy() into L2.
/OK3568_Linux_fs/kernel/drivers/nfc/nfcmrvl/
H A DKconfig21 into the kernel or say M to compile it as module.
33 into the kernel or say M to compile it as module.
44 into the kernel or say M to compile it as module.
55 into the kernel or say M to compile it as module.
/OK3568_Linux_fs/kernel/arch/mips/netlogic/
H A DKconfig10 Add an FDT blob for XLP EVP boards into the kernel.
20 Add an FDT blob for XLP VP boards into the kernel.
30 Add an FDT blob for XLP FVP board into the kernel.
40 Add an FDT blob for XLP GVP board into the kernel.
49 Add an FDT blob for XLP RVP board into the kernel.
/OK3568_Linux_fs/u-boot/board/freescale/mx6sabresd/
H A DREADME26 - Flash the SPL binary into the SD card:
30 - Flash the u-boot.img binary into the SD card:
54 - Flash SPL and u-boot.img binaries into the eMMC:
70 - Flash the SPL image into the SD card:
74 - Flash the u-boot.img image into the SD card:

12345678910>>...141