Home
last modified time | relevance | path

Searched refs:maj (Results 1 – 25 of 128) sorted by relevance

123456

/OK3568_Linux_fs/buildroot/package/libmad/
H A D0001-mips-h-constraint-removal.patch10 +/* Test for gcc >= maj.min, as per __GNUC_PREREQ in glibc */
12 +#define __GNUC_PREREQ(maj, min) \
13 + ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
15 +#define __GNUC_PREREQ(maj, min) 0
45 +/* Test for gcc >= maj.min, as per __GNUC_PREREQ in glibc */
47 +#define __GNUC_PREREQ(maj, min) \
48 + ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
50 +#define __GNUC_PREREQ(maj, min) 0
/OK3568_Linux_fs/kernel/arch/arm/mach-mv78xx0/
H A Dpcie.c27 u8 maj; member
81 "PCIe %d.%d MEM", pp->maj, pp->min); in mv78xx0_pcie_preinit()
92 mvebu_mbus_add_window_by_id(MV78XX0_MBUS_PCIE_MEM_TARGET(pp->maj, pp->min), in mv78xx0_pcie_preinit()
93 MV78XX0_MBUS_PCIE_MEM_ATTR(pp->maj, pp->min), in mv78xx0_pcie_preinit()
95 mvebu_mbus_add_window_remap_by_id(MV78XX0_MBUS_PCIE_IO_TARGET(pp->maj, pp->min), in mv78xx0_pcie_preinit()
96 MV78XX0_MBUS_PCIE_IO_ATTR(pp->maj, pp->min), in mv78xx0_pcie_preinit()
221 return IRQ_MV78XX0_PCIE_00 + (pp->maj << 2) + pp->min; in mv78xx0_pcie_map_irq()
232 static void __init add_pcie_port(int maj, int min, void __iomem *base) in add_pcie_port() argument
234 printk(KERN_INFO "MV78xx0 PCIe port %d.%d: ", maj, min); in add_pcie_port()
241 pp->maj = maj; in add_pcie_port()
H A Dcommon.h30 int maj, int min);
32 int maj, int min);
/OK3568_Linux_fs/external/security/librkcrypto/third_party/libdrm/src/
H A Dxf86drm.c126 static bool drmNodeIsDRM(int maj, int min);
3159 int maj, min; in drmGetDeviceNameFromFd() local
3165 maj = major(sbuf.st_rdev); in drmGetDeviceNameFromFd()
3167 nodetype = drmGetMinorType(maj, min); in drmGetDeviceNameFromFd()
3195 static bool drmNodeIsDRM(int maj, int min) in drmNodeIsDRM() argument
3202 maj, min); in drmNodeIsDRM()
3207 if (!devname_r(makedev(maj, min), S_IFCHR, name, sizeof(name))) in drmNodeIsDRM()
3215 return maj == DRM_MAJOR; in drmNodeIsDRM()
3222 int maj, min, type; in drmGetNodeTypeFromFd() local
3227 maj = major(sbuf.st_rdev); in drmGetNodeTypeFromFd()
[all …]
/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/include/
H A Dfeatures.h161 # define __GNUC_PREREQ(maj, min) \ argument
162 ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
164 # define __GNUC_PREREQ(maj, min) 0 argument
172 # define __glibc_clang_prereq(maj, min) \ argument
173 ((__clang_major__ << 16) + __clang_minor__ >= ((maj) << 16) + (min))
175 # define __glibc_clang_prereq(maj, min) 0 argument
467 #define __GLIBC_PREREQ(maj, min) \ argument
468 ((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min))
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/
H A Dfeatures.h161 # define __GNUC_PREREQ(maj, min) \ argument
162 ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
164 # define __GNUC_PREREQ(maj, min) 0 argument
172 # define __glibc_clang_prereq(maj, min) \ argument
173 ((__clang_major__ << 16) + __clang_minor__ >= ((maj) << 16) + (min))
175 # define __glibc_clang_prereq(maj, min) 0 argument
467 #define __GLIBC_PREREQ(maj, min) \ argument
468 ((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min))
/OK3568_Linux_fs/kernel/fs/unicode/
H A Dutf8-core.c173 static int utf8_parse_version(const char *version, unsigned int *maj, in utf8_parse_version() argument
188 if (match_int(&args[0], maj) || match_int(&args[1], min) || in utf8_parse_version()
201 unsigned int maj, min, rev; in utf8_load() local
203 if (utf8_parse_version(version, &maj, &min, &rev) < 0) in utf8_load()
206 if (!utf8version_is_supported(maj, min, rev)) in utf8_load()
209 unicode_version = UNICODE_AGE(maj, min, rev); in utf8_load()
/OK3568_Linux_fs/external/xserver/hw/xfree86/common/
H A Dxf86Module.h65 #define SET_ABI_VERSION(maj, min) \ argument
66 ((((maj) << 16) & ABI_MAJOR_MASK) | ((min) & ABI_MINOR_MASK))
144 #define MODULE_VERSION_NUMERIC(maj, min, patch) \ argument
145 ((((maj) & 0xFF) << 24) | (((min) & 0xFF) << 16) | (patch & 0xFFFF))
/OK3568_Linux_fs/kernel/tools/perf/util/
H A Ddsos.c14 if (a->maj > b->maj) return -1; in __dso_id__cmp()
15 if (a->maj < b->maj) return 1; in __dso_id__cmp()
45 return !id->maj && !id->min && !id->ino && !id->ino_generation; in dso_id__empty()
50 dso->id.maj = id->maj; in dso__inject_id()
/OK3568_Linux_fs/kernel/Documentation/s390/
H A Dconfig3270.sh52 while read devno maj min;do
54 fsmaj=$maj
59 elif [ $maj = CONSOLE ]; then
65 echo mknod $D/$TTY$devno c $maj $min >>$SCR
/OK3568_Linux_fs/u-boot/drivers/misc/
H A Dfsl_portals.c176 unsigned int maj, min; in fdt_fixup_qportals() local
184 maj = (rev_1 >> 8) & 0xff; in fdt_fixup_qportals()
189 maj, min, ip_cfg) + 1; in fdt_fixup_qportals()
275 unsigned int maj, min; in fdt_fixup_bportals() local
283 maj = (rev_1 >> 8) & 0xff; in fdt_fixup_bportals()
289 maj, min, ip_cfg) + 1; in fdt_fixup_bportals()
/OK3568_Linux_fs/u-boot/arch/powerpc/cpu/mpc85xx/
H A Dportals.c231 unsigned int maj, min; in fdt_fixup_qportals() local
239 maj = (rev_1 >> 8) & 0xff; in fdt_fixup_qportals()
244 maj, min, ip_cfg) + 1; in fdt_fixup_qportals()
326 unsigned int maj, min; in fdt_fixup_bportals() local
334 maj = (rev_1 >> 8) & 0xff; in fdt_fixup_bportals()
340 maj, min, ip_cfg) + 1; in fdt_fixup_bportals()
/OK3568_Linux_fs/kernel/arch/powerpc/kernel/
H A Dsetup-common.c231 unsigned short maj; in show_cpuinfo() local
239 maj = (pvr >> 8) & 0xFF; in show_cpuinfo()
299 maj = ((pvr >> 8) & 0xF); in show_cpuinfo()
303 maj = PVR_MAJ(pvr); in show_cpuinfo()
310 maj = ((pvr >> 8) & 0xFF) - 1; in show_cpuinfo()
315 maj = (pvr >> 8) & 0x0F; in show_cpuinfo()
319 maj = (pvr >> 8) & 0xFF; in show_cpuinfo()
326 maj, min, PVR_VER(pvr), PVR_REV(pvr)); in show_cpuinfo()
/OK3568_Linux_fs/kernel/usr/
H A Dgen_initramfs.sh109 local maj=`field 5 ${dev}`
111 maj=${maj%,}
115 str="${ftype} ${name} ${str} ${dev} ${maj} ${min}"
H A Dgen_init_cpio.c242 unsigned int maj, unsigned int min) in cpio_mknod() argument
265 maj, /* rmajor */ in cpio_mknod()
281 unsigned int maj; in cpio_mknod_line() local
286 name, &mode, &uid, &gid, &dev_type, &maj, &min)) { in cpio_mknod_line()
290 rc = cpio_mknod(name, mode, uid, gid, dev_type, maj, min); in cpio_mknod_line()
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd/include/
H A Dd11_cfg.h36 #define D11REV_MAJ_MIN_GE(corerev, corerev_minor, maj, min) \ argument
37 ((D11REV_IS((corerev), (maj)) && D11MINORREV_GE((corerev_minor), (min))) || \
38 D11REV_GT(corerev, (maj)))
/OK3568_Linux_fs/u-boot/board/freescale/common/
H A Deeprom.h19 #define MPC85XX_CPU_BOARD_REV(maj, min) ((((maj)&0xff) << 8) | ((min) & 0xff)) argument
/OK3568_Linux_fs/device/rockchip/common/linux-kbuild/armhf/linux-kbuild-4.4/scripts/
H A Dgen_initramfs_list.sh129 local maj=`field 5 ${dev}`
131 maj=${maj%,}
135 str="${ftype} ${name} ${str} ${dev} ${maj} ${min}"
/OK3568_Linux_fs/device/rockchip/common/linux-kbuild/aarch64/linux-kbuild-4.4/scripts/
H A Dgen_initramfs_list.sh129 local maj=`field 5 ${dev}`
131 maj=${maj%,}
135 str="${ftype} ${name} ${str} ${dev} ${maj} ${min}"
/OK3568_Linux_fs/kernel/sound/pci/asihpi/
H A Dhpi_version.h24 #define HPI_VERSION_CONSTRUCTOR(maj, min, r) ((maj << 16) + (min << 8) + r) argument
/OK3568_Linux_fs/kernel/drivers/net/ethernet/neterion/vxge/
H A Dvxge-version.h23 #define VXGE_FW_VER(maj, min, bld) (((maj) << 16) + ((min) << 8) + (bld)) argument
/OK3568_Linux_fs/yocto/poky/meta/recipes-support/curl/curl/
H A DCVE-2022-32208.patch24 maj = gss_unwrap(&min, *context, &enc, &dec, NULL, NULL);
25 - if(maj != GSS_S_COMPLETE) {
28 + if(maj != GSS_S_COMPLETE)
/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/include/sys/
H A Dsysmacros.h62 #define makedev(maj, min) gnu_dev_makedev (maj, min) argument
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/sys/
H A Dsysmacros.h62 #define makedev(maj, min) gnu_dev_makedev (maj, min) argument
/OK3568_Linux_fs/kernel/init/
H A Ddo_mounts.c251 unsigned maj, min, offset; in name_to_dev_t() local
254 if ((sscanf(name, "%u:%u%c", &maj, &min, &dummy) == 2) || in name_to_dev_t()
255 (sscanf(name, "%u:%u:%u:%c", &maj, &min, &offset, &dummy) == 3)) { in name_to_dev_t()
256 res = MKDEV(maj, min); in name_to_dev_t()
257 if (maj != MAJOR(res) || min != MINOR(res)) in name_to_dev_t()

123456