Home
last modified time | relevance | path

Searched refs:specs (Results 1 – 25 of 121) sorted by relevance

12345

/OK3568_Linux_fs/u-boot/api/
H A Dapi_storage.c44 static struct stor_spec specs[ENUM_MAX] = { { 0, 0, 0, 0, NULL }, }; variable
53 specs[ENUM_IDE].max_dev = CONFIG_SYS_IDE_MAXDEVICE; in dev_stor_init()
54 specs[ENUM_IDE].enum_started = 0; in dev_stor_init()
55 specs[ENUM_IDE].enum_ended = 0; in dev_stor_init()
56 specs[ENUM_IDE].type = DEV_TYP_STOR | DT_STOR_IDE; in dev_stor_init()
57 specs[ENUM_IDE].name = "ide"; in dev_stor_init()
60 specs[ENUM_MMC].max_dev = CONFIG_SYS_MMC_MAX_DEVICE; in dev_stor_init()
61 specs[ENUM_MMC].enum_started = 0; in dev_stor_init()
62 specs[ENUM_MMC].enum_ended = 0; in dev_stor_init()
63 specs[ENUM_MMC].type = DEV_TYP_STOR | DT_STOR_MMC; in dev_stor_init()
[all …]
/OK3568_Linux_fs/kernel/drivers/video/fbdev/core/
H A Dfbmon.c292 static void parse_vendor_block(unsigned char *block, struct fb_monspecs *specs) in parse_vendor_block() argument
294 specs->manufacturer[0] = ((block[0] & 0x7c) >> 2) + '@'; in parse_vendor_block()
295 specs->manufacturer[1] = ((block[0] & 0x03) << 3) + in parse_vendor_block()
297 specs->manufacturer[2] = (block[1] & 0x1f) + '@'; in parse_vendor_block()
298 specs->manufacturer[3] = 0; in parse_vendor_block()
299 specs->model = block[2] + (block[3] << 8); in parse_vendor_block()
300 specs->serial = block[4] + (block[5] << 8) + in parse_vendor_block()
302 specs->year = block[9] + 1990; in parse_vendor_block()
303 specs->week = block[8]; in parse_vendor_block()
304 DPRINTK(" Manufacturer: %s\n", specs->manufacturer); in parse_vendor_block()
[all …]
H A Dmodedb.c1143 const struct fb_videomode *fb_find_best_display(const struct fb_monspecs *specs, in fb_find_best_display() argument
1171 if (specs->misc & FB_MISC_1ST_DETAIL) { in fb_find_best_display()
1177 if (specs->max_x && specs->max_y) { in fb_find_best_display()
1181 var.xres = (specs->max_x * 7200)/254; in fb_find_best_display()
1182 var.yres = (specs->max_y * 7200)/254; in fb_find_best_display()
/OK3568_Linux_fs/buildroot/package/efivar/
H A D0007-gcc.specs-drop-Werror.patch4 Subject: [PATCH] gcc.specs: drop -Werror
8 …t-1/build/efivar-37/src/include/ -specs=/home/buildroot/autobuild/run/instance-1/output-1/build/…
26 gcc.specs | 2 +-
29 diff --git a/gcc.specs b/gcc.specs
31 --- a/gcc.specs
32 +++ b/gcc.specs
/OK3568_Linux_fs/external/xserver/Xext/
H A Dxres.c71 xXResResourceIdSpec *specs; member
166 xXResResourceIdSpec *specs) in InitConstructResourceBytesCtx() argument
174 ctx->specs = specs; in InitConstructResourceBytesCtx()
531 int numSpecs, xXResClientIdSpec* specs, in ConstructClientIds() argument
537 if (specs[specIdx].client == 0) { in ConstructClientIds()
542 specs[specIdx].mask, ctx)) { in ConstructClientIds()
548 int clientID = CLIENT_ID(specs[specIdx].client); in ConstructClientIds()
552 specs[specIdx].mask, ctx)) { in ConstructClientIds()
575 xXResClientIdSpec *specs = (void*) ((char*) stuff + sizeof(*stuff)); in ProcXResQueryClientIds() local
583 stuff->numSpecs * sizeof(specs[0])); in ProcXResQueryClientIds()
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/gcc/gcc/
H A D0005-cpp-honor-sysroot.patch24 gcc/cp/lang-specs.h | 2 +-
28 diff --git a/gcc/cp/lang-specs.h b/gcc/cp/lang-specs.h
30 --- a/gcc/cp/lang-specs.h
31 +++ b/gcc/cp/lang-specs.h
/OK3568_Linux_fs/buildroot/package/x11r7/xlib_libX11/
H A Dxlib_libX11.mk34 --disable-specs \
38 --disable-specs \
/OK3568_Linux_fs/kernel/drivers/gpu/drm/etnaviv/
H A Detnaviv_gpu.c178 u32 specs[4]; in etnaviv_hw_specs() local
181 specs[0] = gpu_read(gpu, VIVS_HI_CHIP_SPECS); in etnaviv_hw_specs()
182 specs[1] = gpu_read(gpu, VIVS_HI_CHIP_SPECS_2); in etnaviv_hw_specs()
183 specs[2] = gpu_read(gpu, VIVS_HI_CHIP_SPECS_3); in etnaviv_hw_specs()
184 specs[3] = gpu_read(gpu, VIVS_HI_CHIP_SPECS_4); in etnaviv_hw_specs()
186 gpu->identity.stream_count = etnaviv_field(specs[0], in etnaviv_hw_specs()
188 gpu->identity.register_max = etnaviv_field(specs[0], in etnaviv_hw_specs()
190 gpu->identity.thread_count = etnaviv_field(specs[0], in etnaviv_hw_specs()
192 gpu->identity.vertex_cache_size = etnaviv_field(specs[0], in etnaviv_hw_specs()
194 gpu->identity.shader_core_count = etnaviv_field(specs[0], in etnaviv_hw_specs()
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-graphics/xorg-lib/
H A Dxorg-lib-common.inc16 EXTRA_OECONF = "--disable-specs --without-groff --without-ps2pdf --without-fop"
22 --disable-specs --without-groff --without-ps2pdf --without-fop \
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/libtool/libtool/
H A D0011-ltmain.in-Handle-prefix-map-compiler-options-correct.patch24 - -specs=*|-fsanitize=*|-fuse-ld=*|-Wa,*)
25 + -specs=*|-fsanitize=*|-fuse-ld=*|-f*-prefix-map*|-Wa,*)
/OK3568_Linux_fs/kernel/drivers/video/fbdev/
H A Dtdfxfb.c1347 struct fb_monspecs *specs) in tdfxfb_probe_i2c_connector() argument
1356 fb_edid_to_monspecs(edid, specs); in tdfxfb_probe_i2c_connector()
1378 struct fb_monspecs *specs; in tdfxfb_probe() local
1480 specs = &info->monspecs; in tdfxfb_probe()
1485 err = tdfxfb_probe_i2c_connector(default_par, specs); in tdfxfb_probe()
1488 if (specs->modedb == NULL) in tdfxfb_probe()
1493 fb_videomode_to_modelist(specs->modedb, in tdfxfb_probe()
1494 specs->modedb_len, in tdfxfb_probe()
1496 m = fb_find_best_display(specs, &info->modelist); in tdfxfb_probe()
1513 specs->modedb, specs->modedb_len, in tdfxfb_probe()
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/android-tools/android-tools/libselinux/
H A D0001-libselinux-Do-not-define-gettid-if-glibc-2.30-is-use.patch13 …s -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -s…
/OK3568_Linux_fs/buildroot/dl/ncurses/
HDncurses-6.1-20191228.patch.gz ... specially below 119 continue 120 ;; 121+ -specs*) # ignore linker specs-files which were ...
/OK3568_Linux_fs/u-boot/doc/
H A DREADME.mpc83xxads11 Reading specs from /usr/powerpc/lib/gcc/powerpc-linux/3.4.3/specs
/OK3568_Linux_fs/kernel/drivers/i2c/busses/
H A Di2c-stm32f7.c431 struct stm32f7_i2c_spec *specs; in stm32f7_i2c_compute_timing() local
449 specs = stm32f7_get_specs(setup->speed_freq); in stm32f7_i2c_compute_timing()
450 if (specs == ERR_PTR(-EINVAL)) { in stm32f7_i2c_compute_timing()
456 if ((setup->rise_time > specs->rise_max) || in stm32f7_i2c_compute_timing()
457 (setup->fall_time > specs->fall_max)) { in stm32f7_i2c_compute_timing()
460 setup->rise_time, specs->rise_max, in stm32f7_i2c_compute_timing()
461 setup->fall_time, specs->fall_max); in stm32f7_i2c_compute_timing()
481 sdadel_min = specs->hddat_min + setup->fall_time - in stm32f7_i2c_compute_timing()
484 sdadel_max = specs->vddat_max - setup->rise_time - in stm32f7_i2c_compute_timing()
487 scldel_min = setup->rise_time + specs->sudat_min; in stm32f7_i2c_compute_timing()
[all …]
/OK3568_Linux_fs/kernel/drivers/video/fbdev/aty/
H A Dradeon_monitor.c908 struct fb_monspecs *specs = &info->monspecs; in radeon_check_modes() local
912 if (specs->misc & FB_MISC_1ST_DETAIL) { in radeon_check_modes()
915 for (i = 0; i < specs->modedb_len; i++) { in radeon_check_modes()
916 if (specs->modedb[i].flag & FB_MODE_IS_FIRST) { in radeon_check_modes()
917 modedb = &specs->modedb[i]; in radeon_check_modes()
923 modedb = &specs->modedb[0]; in radeon_check_modes()
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/gcc/
H A Dgcc-target.inc52 ${gcclibdir}/${TARGET_SYS}/${BINV}/specs \
179 # Hack around specs file assumptions
180 …gcc/${TARGET_SYS}/${BINV}/specs && sed -i -e '/^*cross_compile:$/ { n; s/1/0/; }' ${D}${libdir}/gc…
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/mmc/
H A Dmmci.txt13 as the VCC/VDD supply in the eMMC/SD specs.
21 as the VCCQ/VDD_IO supply in the eMMC/SD specs.
/OK3568_Linux_fs/buildroot/package/liboauth/
H A DConfig.in7 to escape and encode parameters according to oAuth specs and
/OK3568_Linux_fs/u-boot/board/theobroma-systems/puma_rk3399/
H A DMAINTAINERS9 W: https://www.theobroma-systems.com/rk3399-q7/tech-specs
/OK3568_Linux_fs/u-boot/board/theobroma-systems/lion_rk3368/
H A DMAINTAINERS9 W: https://www.theobroma-systems.com/rk3368-uq7/tech-specs
/OK3568_Linux_fs/kernel/sound/soc/uniphier/
H A Daio-ld11.c356 .specs = uniphier_aio_ld11,
366 .specs = uniphier_aio_ld11,
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/w1/
H A Dw1-gpio.txt6 - gpios: one or two GPIO specs:
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/newlib/
H A Dlibgloss_4.2.0.bb29 FILES:${PN} += "${libdir}/*.ld ${libdir}/*.specs"
/OK3568_Linux_fs/kernel/drivers/video/fbdev/nvidia/
H A Dnvidia.c1105 struct fb_monspecs *specs = &info->monspecs; in nvidia_set_fbinfo() local
1133 if (specs->modedb != NULL) { in nvidia_set_fbinfo()
1136 mode = fb_find_best_display(specs, &info->modelist); in nvidia_set_fbinfo()
1144 fb_find_mode(&nvidiafb_default_var, info, buf, specs->modedb, in nvidia_set_fbinfo()
1145 specs->modedb_len, &modedb, bpp); in nvidia_set_fbinfo()
1150 specs->modedb, specs->modedb_len, &modedb, bpp); in nvidia_set_fbinfo()

12345