| /OK3568_Linux_fs/external/security/librkcrypto/test/c_mode/ |
| H A D | aes_gcm.c | 28 #define PACK(s) ((size_t)(s)<<(sizeof(size_t)*8-16)) 31 u64 T = U64(0xe100000000000000) & (0-(V.lo&1)); \ 32 V.lo = (V.hi<<63)|(V.lo>>1); \ 33 V.hi = (V.hi>>1 )^T; \ 36 u32 T = 0xe1000000U & (0-(u32)(V.lo&1)); \ 37 V.lo = (V.hi<<63)|(V.lo>>1); \ 38 V.hi = (V.hi>>1 )^((u64)T<<32); \ 42 typedef struct { u64 hi,lo; } u128; member 57 /* Relative position of Xi, H and pre-computed Htable is used 76 * TABLE_BITS>1 are lookup-table-driven implementations referred to as [all …]
|
| H A D | sm4_gcm.c | 26 #define PACK(s) ((size_t)(s)<<(sizeof(size_t)*8-16)) 29 u64 T = U64(0xe100000000000000) & (0-(V.lo&1)); \ 30 V.lo = (V.hi<<63)|(V.lo>>1); \ 31 V.hi = (V.hi>>1 )^T; \ 34 u32 T = 0xe1000000U & (0-(u32)(V.lo&1)); \ 35 V.lo = (V.hi<<63)|(V.lo>>1); \ 36 V.hi = (V.hi>>1 )^((u64)T<<32); \ 40 typedef struct { u64 hi,lo; } u128; member 51 /* Relative position of Xi, H and pre-computed Htable is used 70 * TABLE_BITS>1 are lookup-table-driven implementations referred to as [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/iio/accel/ |
| H A D | lis302.txt | 8 - compatible: should be set to "st,lis3lv02d-spi" 9 - reg: the chipselect index 10 - spi-max-frequency: maximal bus speed, should be set to 1000000 unless 12 - interrupts: the interrupt generated by the device 15 - compatible: should be set to "st,lis3lv02d" 16 - reg: i2c slave address 17 - Vdd-supply: The input supply for Vdd 18 - Vdd_IO-supply: The input supply for Vdd_IO 23 - st,click-single-{x,y,z}: if present, tells the device to issue an 25 x/y/z axis. [all …]
|
| /OK3568_Linux_fs/external/libmali/include/CL/ |
| H A D | cl_platform.h | 2 * Copyright (c) 2008-2015 The Khronos Group Inc. 29 /* $Revision: 11803 $ on $Date: 2010-06-25 10:02:12 -0700 (Fri, 25 Jun 2010) $ */ 144 #define CL_SCHAR_MIN (-127-1) 149 #define CL_SHRT_MIN (-32767-1) 152 #define CL_INT_MIN (-2147483647-1) 155 #define CL_LONG_MIN ((cl_long) -0x7FFFFFFFFFFFFFFFLL - 1LL) 162 #define CL_FLT_MIN_10_EXP -37 163 #define CL_FLT_MIN_EXP -125 166 #define CL_FLT_MIN 1.175494350822287507969e-38f 167 #define CL_FLT_EPSILON 1.1920928955078125e-7f [all …]
|
| /OK3568_Linux_fs/kernel/crypto/ |
| H A D | fcrypt.c | 13 * Copyright (c) 1995 - 2000 Kungliga Tekniska Högskolan 58 #define ror56(hi, lo, n) \ argument 60 u32 t = lo & ((1 << n) - 1); \ 61 lo = (lo >> n) | ((hi & ((1 << n) - 1)) << (32 - n)); \ 62 hi = (hi >> n) | (t << (24-n)); \ 68 k = (k >> n) | ((k & ((1 << n) - 1)) << (56 - n)); \ 73 * /afs/transarc.com/public/afsps/afs.rel31b.export-src/rxkad/sboxes.h 75 #undef Z 76 #define Z(x) cpu_to_be32(x << 3) macro 78 Z(0xea), Z(0x7f), Z(0xb2), Z(0x64), Z(0x9d), Z(0xb0), Z(0xd9), Z(0x11), [all …]
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | minmax.h | 1 /* SPDX-License-Identifier: GPL-2.0 */ 10 * - avoid multiple evaluations of the arguments (so side-effects like 11 * "x++" happen only once) when non-constant. 12 * - perform strict type-checking (to generate warnings instead of 15 * - retain result as a constant expressions when called with only 41 * min - return minimum of two values of the same or compatible types 48 * max - return maximum of two values of the same or compatible types 55 * min3 - return minimum of three values 58 * @z: third value 60 #define min3(x, y, z) min((typeof(x))min(x, y), z) argument [all …]
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/ |
| H A D | warp_shuffle.hpp | 13 // Copyright (C) 2000-2008, Intel Corporation, all rights reserved. 55 # define __shfl(x, y, z) __shfl_sync(0xFFFFFFFFU, x, y, z) argument 56 # define __shfl_up(x, y, z) __shfl_up_sync(0xFFFFFFFFU, x, y, z) argument 57 # define __shfl_down(x, y, z) __shfl_down_sync(0xFFFFFFFFU, x, y, z) argument 80 int hi = __double2hiint(val); in shfl() local 83 hi = __shfl(hi, srcLane, width); in shfl() 85 return __hiloint2double(hi, lo); in shfl() 112 int hi = __double2hiint(val); in shfl_down() local 115 hi = __shfl_down(hi, delta, width); in shfl_down() 117 return __hiloint2double(hi, lo); in shfl_down() [all …]
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/core/cuda/ |
| H A D | warp_shuffle.hpp | 13 // Copyright (C) 2000-2008, Intel Corporation, all rights reserved. 55 # define __shfl(x, y, z) __shfl_sync(0xFFFFFFFFU, x, y, z) argument 56 # define __shfl_up(x, y, z) __shfl_up_sync(0xFFFFFFFFU, x, y, z) argument 57 # define __shfl_down(x, y, z) __shfl_down_sync(0xFFFFFFFFU, x, y, z) argument 80 int hi = __double2hiint(val); in shfl() local 83 hi = __shfl(hi, srcLane, width); in shfl() 85 return __hiloint2double(hi, lo); in shfl() 112 int hi = __double2hiint(val); in shfl_down() local 115 hi = __shfl_down(hi, delta, width); in shfl_down() 117 return __hiloint2double(hi, lo); in shfl_down() [all …]
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/core/cuda/ |
| H A D | warp_shuffle.hpp | 13 // Copyright (C) 2000-2008, Intel Corporation, all rights reserved. 55 # define __shfl(x, y, z) __shfl_sync(0xFFFFFFFFU, x, y, z) argument 56 # define __shfl_up(x, y, z) __shfl_up_sync(0xFFFFFFFFU, x, y, z) argument 57 # define __shfl_down(x, y, z) __shfl_down_sync(0xFFFFFFFFU, x, y, z) argument 80 int hi = __double2hiint(val); in shfl() local 83 hi = __shfl(hi, srcLane, width); in shfl() 85 return __hiloint2double(hi, lo); in shfl() 112 int hi = __double2hiint(val); in shfl_down() local 115 hi = __shfl_down(hi, delta, width); in shfl_down() 117 return __hiloint2double(hi, lo); in shfl_down() [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/sound/ |
| H A D | tlv320adcx140.yaml | 1 # SPDX-License-Identifier: (GPL-2.0+ OR BSD-2-Clause) 4 --- 6 $schema: http://devicetree.org/meta-schemas/core.yaml# 8 title: Texas Instruments TLV320ADCX140 Quad Channel Analog-to-Digital Converter 11 - Dan Murphy <dmurphy@ti.com> 14 The TLV320ADCX140 are multichannel (4-ch analog recording or 8-ch digital 15 PDM microphones recording), high-performance audio, analog-to-digital 28 - const: ti,tlv320adc3140 29 - const: ti,tlv320adc5140 30 - const: ti,tlv320adc6140 [all …]
|
| /OK3568_Linux_fs/kernel/arch/arm/boot/dts/ |
| H A D | omap3-gta04a3.dts | 1 // SPDX-License-Identifier: GPL-2.0-only 6 #include "omap3-gta04.dtsi" 18 interrupt-parent = <&gpio3>; 20 Vdd-supply = <&vaux2>; 21 Vdd_IO-supply = <&vaux2>; 23 st,click-single-x; 24 st,click-single-y; 25 st,click-single-z; 26 st,click-thresh-x = <8>; 27 st,click-thresh-y = <8>; [all …]
|
| H A D | omap3-overo-common-peripherals.dtsi | 1 // SPDX-License-Identifier: GPL-2.0-only 11 lis33_3v3: lis33-3v3-reg { 12 compatible = "regulator-fixed"; 13 regulator-name = "lis33-3v3-reg"; 14 regulator-min-microvolt = <3300000>; 15 regulator-max-microvolt = <3300000>; 18 lis33_1v8: lis33-1v8-reg { 19 compatible = "regulator-fixed"; 20 regulator-name = "lis33-1v8-reg"; 21 regulator-min-microvolt = <1800000>; [all …]
|
| H A D | pxa300-raumfeld-controller.dts | 1 // SPDX-License-Identifier: GPL-2.0 3 /dts-v1/; 5 #include "pxa300-raumfeld-common.dtsi" 9 compatible = "raumfeld,raumfeld-controller-pxa303", "marvell,pxa300"; 11 reg_vbatt: regulator-vbatt { 12 compatible = "regulator-fixed"; 13 regulator-name = "vbatt-fixed-supply"; 14 regulator-min-microvolt = <3700000>; 15 regulator-max-microvolt = <3700000>; 16 regulator-always-on; [all …]
|
| H A D | am335x-evmsk.dts | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * Copyright (C) 2012 Texas Instruments Incorporated - https://www.ti.com/ 11 /dts-v1/; 14 #include <dt-bindings/pwm/pwm.h> 15 #include <dt-bindings/interrupt-controller/irq.h> 18 model = "TI AM335x EVM-SK"; 19 compatible = "ti,am335x-evmsk", "ti,am33xx"; 23 cpu0-supply = <&vdd1_reg>; 33 stdout-path = &uart0; 37 compatible = "regulator-fixed"; [all …]
|
| H A D | am335x-pepper.dts | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * Copyright (C) 2014 Gumstix, Inc. - https://www.gumstix.com/ 5 /dts-v1/; 7 #include <dt-bindings/input/input.h> 12 compatible = "gumstix,am335x-pepper", "ti,am33xx"; 16 cpu0-supply = <&dcdc3_reg>; 26 compatible = "gpio-keys"; 30 compatible = "gpio-leds"; 38 compatible = "ti,da830-evm-audio"; 42 compatible = "regulator-fixed"; [all …]
|
| /OK3568_Linux_fs/u-boot/include/linux/ |
| H A D | kernel.h | 9 #define SHRT_MIN ((s16)(-SHRT_MAX - 1)) 11 #define INT_MIN (-INT_MAX - 1) 14 #define LONG_MIN (-LONG_MAX - 1) 17 #define LLONG_MIN (-LLONG_MAX - 1) 25 #define S8_MIN ((s8)(-S8_MAX - 1)) 28 #define S16_MIN ((s16)(-S16_MAX - 1)) 31 #define S32_MIN ((s32)(-S32_MAX - 1)) 34 #define S64_MIN ((s64)(-S64_MAX - 1)) 40 #define ALIGN(x,a) __ALIGN_MASK((x),(typeof(x))(a)-1) 43 #define IS_ALIGNED(x, a) (((x) & ((typeof(x))(a) - 1)) == 0) [all …]
|
| /OK3568_Linux_fs/kernel/drivers/misc/lis3lv02d/ |
| H A D | lis3lv02d.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 3 * lis3lv02d.c - ST LIS3LV02DL accelerometer driver 5 * Copyright (C) 2007-2008 Yan Burman 7 * Copyright (C) 2008-2009 Pavel Machek 42 #define SELFTEST_FAIL -1 43 #define SELFTEST_IRQ -2 51 * to keep the interrupt for the free-fall event. The values are updated at 61 * LIS3LV02D spec says 1024 LSBs corresponds 1 G -> 1LSB is 1000/1024 mG 67 /* Sensitivity values for -2G +2G scale */ 72 * LIS331DLH spec says 1LSBs corresponds 4G/4096 -> 1LSB is 1000/1024 mG. [all …]
|
| /OK3568_Linux_fs/kernel/drivers/hid/ |
| H A D | hid-icade.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 16 #include "hid-ids.h" 21 * ↓ B X Z R 26 * DN ON,OFF = x,z 33 * Z ON,OFF = k,p 48 * < copy of hid_keyboard[] from hid-input.c > 101 * for (trans = icade_keys; trans->from; trans++) { 102 * int usage = usage_for_key (trans->from); 113 * for (trans = icade_keys; trans->from; trans++) { 115 * usage_for_key (trans->from), trans->to, trans->press); [all …]
|
| H A D | hid-alps.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 12 #include "hid-ids.h" 28 #define U1_ABSOLUTE_REPORT_ID_SECD 0x02 /* FW-PTP Absolute data ReportID */ 147 length -= tlen; in t4_calc_check_sum() 153 } while (--tlen > 0); in t4_calc_check_sum() 175 return -ENOMEM; in t4_read_write_register() 200 dev_err(&hdev->dev, "failed to read command (%d)\n", ret); in t4_read_write_register() 207 ret = -ENOMEM; in t4_read_write_register() 215 dev_err(&hdev->dev, "failed read register (%d)\n", ret); in t4_read_write_register() 219 ret = -EINVAL; in t4_read_write_register() [all …]
|
| H A D | hid-lg.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 6 * Copyright (c) 2000-2005 Vojtech Pavlik <vojtech@suse.cz> 7 * Copyright (c) 2005 Michael Haboustak <mike-@cinci.rr.com> for Concept2, Inc 8 * Copyright (c) 2006-2007 Jiri Kosina 25 #include "hid-ids.h" 26 #include "hid-lg.h" 27 #include "hid-lg4ff.h" 228 0x09, 0x32, /* Usage (Z), */ 274 0x09, 0x32, /* Usage (Z), */ 322 0x09, 0x32, /* Usage (Z), */ [all …]
|
| /OK3568_Linux_fs/kernel/arch/m68k/ifpsp060/src/ |
| H A D | ilsp.S | 3 M68000 Hi-Performance Microprocessor Division 5 Production Release P1.00 -- October 10, 1994 63 # _060LSP__idivu64_(): Emulate 64-bit unsigned div instruction. # 64 # _060LSP__idivs64_(): Emulate 64-bit signed div instruction. # 68 # 64-bit divide instruction. # 75 # 0x8(sp) = hi(dividend) # 85 # sign info for later. Separate out special cases like divide-by-zero # 86 # or 32-bit divides if possible. Else, use a special math algorithm # 90 # zero, then perform a divide-by-zero using a 16-bit implemented # 96 set POSNEG, -1 [all …]
|
| /OK3568_Linux_fs/u-boot/board/renesas/ap325rxa/ |
| H A D | ap325rxa.c | 5 * SPDX-License-Identifier: GPL-2.0+ 54 /* I/O Buffer Hi-Z data */ 84 /* I/O Buffer Hi-Z Init */ in board_init()
|
| /OK3568_Linux_fs/kernel/arch/arm/kernel/ |
| H A D | opcodes.c | 1 // SPDX-License-Identifier: GPL-2.0-only 20 0xF0F0, /* EQ == Z set */ 28 0x0C0C, /* HI == C set && Z clear */ 29 0xF3F3, /* LS == C clear || Z set */ 32 0x0A05, /* GT == (!Z && (N==V)) */ 33 0xF5FA, /* LE == (Z || (N!=V)) */ 40 * ARM_OPCODE_CONDTEST_FAIL - if condition fails 41 * ARM_OPCODE_CONDTEST_PASS - if condition passes (including AL) 42 * ARM_OPCODE_CONDTEST_UNCOND - if NV condition, or separate unconditional
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/lib/gconv/ |
| HD | IBM943.so | ... $ U % V & W ' X ( Y ) Z * [ + \ , ] - ^ . _ / ... |
| /OK3568_Linux_fs/kernel/arch/arm64/kvm/hyp/ |
| H A D | aarch32.c | 1 // SPDX-License-Identifier: GPL-2.0 5 * Copyright (C) 2012,2013 - ARM Ltd 9 * Copyright (C) 2012 - Virtual Open Systems and Columbia University 26 0xF0F0, /* EQ == Z set */ 34 0x0C0C, /* HI == C set && Z clear */ 35 0xF3F3, /* LS == C clear || Z set */ 38 0x0A05, /* GT == (!Z && (N==V)) */ 39 0xF5FA, /* LE == (Z || (N!=V)) */ 53 /* Top two bits non-zero? Unconditional. */ in kvm_condition_valid32() 87 * adjust_itstate - adjust ITSTATE when emulating instructions in IT-block [all …]
|