Home
last modified time | relevance | path

Searched refs:var (Results 176 – 200 of 1775) sorted by relevance

12345678910>>...71

/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/p910nd/p910nd/
H A Dfix-var-lock.patch1 Use /var/lock instead of /var/lock/subsys
13 -/var/run/p9100d.pid, /var/lock/subsys/p9100d, /etc/hosts.allow, /etc/hosts.deny
14 +/var/run/p9100d.pid, /var/lock/p9100d, /etc/hosts.allow, /etc/hosts.deny
26 -#define LOCKFILE "/var/lock/subsys/p910%cd"
27 +#define LOCKFILE "/var/lock/p910%cd"
/OK3568_Linux_fs/buildroot/package/lighttpd/
H A D0001-Fix-default-config-file.patch3 * Changed the log path to /var/log and logs filenames
32 -var.log_root = "/var/log/lighttpd"
33 -var.server_root = "/srv/www"
34 +var.log_root = "/var/log"
35 +var.server_root = "/var/www"
36 var.state_dir = "/run"
37 var.home_dir = "/var/lib/lighttpd"
38 var.conf_dir = "/etc/lighttpd"
/OK3568_Linux_fs/kernel/drivers/video/fbdev/
H A Dwmt_ge_rops.c54 pat = pixel_to_pat(p->var.bits_per_pixel, fg); in wmt_ge_fillrect()
59 writel(p->var.bits_per_pixel == 32 ? 3 : in wmt_ge_fillrect()
60 (p->var.bits_per_pixel == 8 ? 0 : 1), regbase + GE_DEPTH_OFF); in wmt_ge_fillrect()
61 writel(p->var.bits_per_pixel == 15 ? 1 : 0, regbase + GE_HIGHCOLOR_OFF); in wmt_ge_fillrect()
63 writel(p->var.xres_virtual - 1, regbase + GE_DESTDISPW_OFF); in wmt_ge_fillrect()
64 writel(p->var.yres_virtual - 1, regbase + GE_DESTDISPH_OFF); in wmt_ge_fillrect()
85 writel(p->var.bits_per_pixel > 16 ? 3 : in wmt_ge_copyarea()
86 (p->var.bits_per_pixel > 8 ? 1 : 0), regbase + GE_DEPTH_OFF); in wmt_ge_copyarea()
89 writel(p->var.xres_virtual - 1, regbase + GE_SRCDISPW_OFF); in wmt_ge_copyarea()
90 writel(p->var.yres_virtual - 1, regbase + GE_SRCDISPH_OFF); in wmt_ge_copyarea()
[all …]
H A Dhyperv_fb.c333 msg.situ.video_output[0].depth_bits = info->var.bits_per_pixel; in synthvid_send_situ()
334 msg.situ.video_output[0].width_pixels = info->var.xres; in synthvid_send_situ()
335 msg.situ.video_output[0].height_pixels = info->var.yres; in synthvid_send_situ()
386 x2 = info->var.xres; in synthvid_update()
388 y2 = info->var.yres; in synthvid_update()
398 (x2 < x1 || x2 > info->var.xres) ? info->var.xres : x2; in synthvid_update()
400 (y2 < y1 || y2 > info->var.yres) ? info->var.yres : y2; in synthvid_update()
453 synthvid_update(p, 0, miny, p->var.xres, maxy + 1); in synthvid_deferred_io()
752 if (x1 > info->var.xres || x2 > info->var.xres || in hvfb_update_work()
753 y1 > info->var.yres || y2 > info->var.yres || x2 <= x1) in hvfb_update_work()
[all …]
H A Dvalkyriefb.c100 static int valkyriefb_check_var(struct fb_var_screeninfo *var,
109 static int valkyrie_var_to_par(struct fb_var_screeninfo *var,
137 if ((err = valkyrie_var_to_par(&info->var, par, info))) in valkyriefb_set_par()
160 struct fb_var_screeninfo *var) in valkyrie_par_to_var() argument
162 return mac_vmode_to_var(par->vmode, par->cmode, var); in valkyrie_par_to_var()
166 valkyriefb_check_var(struct fb_var_screeninfo *var, struct fb_info *info) in valkyriefb_check_var() argument
171 if ((err = valkyrie_var_to_par(var, &par, info))) in valkyriefb_check_var()
173 valkyrie_par_to_var(&par, var); in valkyriefb_check_var()
375 mac_vmode_to_var(default_vmode, default_cmode, &p->info.var); in valkyriefb_init()
456 static int valkyrie_var_to_par(struct fb_var_screeninfo *var, in valkyrie_var_to_par() argument
[all …]
H A Dsimplefb.c48 u32 cr = red >> (16 - info->var.red.length); in simplefb_setcolreg()
49 u32 cg = green >> (16 - info->var.green.length); in simplefb_setcolreg()
50 u32 cb = blue >> (16 - info->var.blue.length); in simplefb_setcolreg()
56 value = (cr << info->var.red.offset) | in simplefb_setcolreg()
57 (cg << info->var.green.offset) | in simplefb_setcolreg()
58 (cb << info->var.blue.offset); in simplefb_setcolreg()
59 if (info->var.transp.length > 0) { in simplefb_setcolreg()
60 u32 mask = (1 << info->var.transp.length) - 1; in simplefb_setcolreg()
61 mask <<= info->var.transp.offset; in simplefb_setcolreg()
440 info->var = simplefb_var; in simplefb_probe()
[all …]
H A Dsunxvr500.c200 struct fb_var_screeninfo *var = &info->var; in e3d_set_fbinfo() local
219 var->xres = ep->width; in e3d_set_fbinfo()
220 var->yres = ep->height; in e3d_set_fbinfo()
221 var->xres_virtual = var->xres; in e3d_set_fbinfo()
222 var->yres_virtual = var->yres; in e3d_set_fbinfo()
223 var->bits_per_pixel = ep->depth; in e3d_set_fbinfo()
225 var->red.offset = 8; in e3d_set_fbinfo()
226 var->red.length = 8; in e3d_set_fbinfo()
227 var->green.offset = 16; in e3d_set_fbinfo()
228 var->green.length = 8; in e3d_set_fbinfo()
[all …]
/OK3568_Linux_fs/kernel/drivers/dma/bestcomm/
H A Dgen_bd.c117 struct bcom_gen_bd_rx_var *var; in bcom_gen_bd_rx_reset() local
124 var = (struct bcom_gen_bd_rx_var *) bcom_task_var(tsk->tasknum); in bcom_gen_bd_rx_reset()
130 var->enable = bcom_eng->regs_base + in bcom_gen_bd_rx_reset()
132 var->fifo = (u32) priv->fifo; in bcom_gen_bd_rx_reset()
133 var->bd_base = tsk->bd_pa; in bcom_gen_bd_rx_reset()
134 var->bd_last = tsk->bd_pa + ((tsk->num_bd-1) * tsk->bd_size); in bcom_gen_bd_rx_reset()
135 var->bd_start = tsk->bd_pa; in bcom_gen_bd_rx_reset()
136 var->buffer_size = priv->maxbufsize; in bcom_gen_bd_rx_reset()
201 struct bcom_gen_bd_tx_var *var; in bcom_gen_bd_tx_reset() local
208 var = (struct bcom_gen_bd_tx_var *) bcom_task_var(tsk->tasknum); in bcom_gen_bd_tx_reset()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Dtarget.def82 integer object. @var{x} is the object's value, @var{size} is its size\n\
83 in bytes and @var{aligned_p} indicates whether it is aligned. The\n\
121 @var{stream} some commands that will make the label @var{name} global;\n\
133 @var{stream} some commands that will make the name associated with @var{decl}\n\
143 @var{stream} some commands that will declare the name associated with\n\
144 @var{decl} which is not defined in the current translation unit. Most\n\
159 function declaration @var{decl}, to the stdio stream @var{stream}.\n\
160 The third argument, @var{for_eh}, is a boolean: true if this is for an\n\
161 exception table. The fourth argument, @var{empty}, is a boolean:\n\
200 the assembly for @var{insn} has been emitted, false if the hook should\
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Dtarget.def82 integer object. @var{x} is the object's value, @var{size} is its size\n\
83 in bytes and @var{aligned_p} indicates whether it is aligned. The\n\
121 @var{stream} some commands that will make the label @var{name} global;\n\
133 @var{stream} some commands that will make the name associated with @var{decl}\n\
143 @var{stream} some commands that will declare the name associated with\n\
144 @var{decl} which is not defined in the current translation unit. Most\n\
159 function declaration @var{decl}, to the stdio stream @var{stream}.\n\
160 The third argument, @var{for_eh}, is a boolean: true if this is for an\n\
161 exception table. The fourth argument, @var{empty}, is a boolean:\n\
200 the assembly for @var{insn} has been emitted, false if the hook should\
[all …]
/OK3568_Linux_fs/kernel/sound/core/
H A Dpcm_lib.c1121 int var, in snd_pcm_hw_rule_add() argument
1145 c->var = var; in snd_pcm_hw_rule_add()
1174 int snd_pcm_hw_constraint_mask(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var, in snd_pcm_hw_constraint_mask() argument
1178 struct snd_mask *maskp = constrs_mask(constrs, var); in snd_pcm_hw_constraint_mask()
1196 int snd_pcm_hw_constraint_mask64(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var, in snd_pcm_hw_constraint_mask64() argument
1200 struct snd_mask *maskp = constrs_mask(constrs, var); in snd_pcm_hw_constraint_mask64()
1220 int snd_pcm_hw_constraint_integer(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var) in snd_pcm_hw_constraint_integer() argument
1223 return snd_interval_setinteger(constrs_interval(constrs, var)); in snd_pcm_hw_constraint_integer()
1239 int snd_pcm_hw_constraint_minmax(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var, in snd_pcm_hw_constraint_minmax() argument
1248 return snd_interval_refine(constrs_interval(constrs, var), &t); in snd_pcm_hw_constraint_minmax()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/declarative_ui/
H A Dtst_map_coordinateanimation.qml41 property var coordinateList: []
70 var pi = Math.PI
71 var lon = coord.longitude / 360.0 + 0.5;
73 var lat = coord.latitude;
90 var from = {'latitude': 58.0, 'longitude': 12.0}
91 var to = {'latitude': 62.0, 'longitude': 24.0}
94 var fromMerc = toMercator(from)
95 var toMerc = toMercator(to)
97var delta = (toMerc.latitude - fromMerc.latitude) / (toMerc.longitude - fromMerc.longitude)
119 var i
[all …]
/OK3568_Linux_fs/kernel/Documentation/trace/
H A Dhistogram-design.rst375 make use of a new .var.idx field member in struct hist_field, which
398 | .var.idx | |
400 | var = ts0 | |
410 | .var.idx |----------------------------+-+ |
426 | .var.idx | | | |
450 As you can see, the ts0 entry's .var.idx member contains the index | | |
454 saved in .var.idx by create_tracing_map_fields() after it calls | | |
572 .var.idx for pid 4444 is 213499240729. | |
588 Associated with the new var ref field are a couple of new hist_field | |
589 members, var.hist_data and var_ref_idx. For a variable reference, the | |
[all …]
/OK3568_Linux_fs/kernel/samples/kobject/
H A Dkobject-example.c57 int var; in b_show() local
60 var = baz; in b_show()
62 var = bar; in b_show()
63 return sprintf(buf, "%d\n", var); in b_show()
69 int var, ret; in b_store() local
71 ret = kstrtoint(buf, 10, &var); in b_store()
76 baz = var; in b_store()
78 bar = var; in b_store()
/OK3568_Linux_fs/kernel/drivers/staging/fbtft/
H A Dfb_agm1264k-fl.c248 if (src[(y * 8 + i) * par->info->var.xres + x]) in construct_line_bitmap()
299 signed short *convert_buf = kmalloc_array(par->info->var.xres * in write_vmem()
300 par->info->var.yres, sizeof(signed short), GFP_NOIO); in write_vmem()
306 for (x = 0; x < par->info->var.xres; ++x) in write_vmem()
307 for (y = 0; y < par->info->var.yres; ++y) { in write_vmem()
308 u16 pixel = vmem16[y * par->info->var.xres + x]; in write_vmem()
318 convert_buf[y * par->info->var.xres + x] = in write_vmem()
323 for (x = 0; x < par->info->var.xres; ++x) in write_vmem()
324 for (y = 0; y < par->info->var.yres; ++y) { in write_vmem()
326 convert_buf[y * par->info->var.xres + x]; in write_vmem()
[all …]
/OK3568_Linux_fs/buildroot/package/glibc/2.28-69-g1e5c5303a522764d7e9d2302a60e4a32cdb902f1/
H A D0001-array_length-Make-usable-as-a-constant-expression.patch24 #define array_length(var) \
27 - (__typeof (var), __typeof (&(var)[0])), \
29 - sizeof (var) / sizeof ((var)[0]); \
31 + (sizeof (var) / sizeof ((var)[0]) \
34 + (__typeof (var), __typeof (&(var)[0])), \
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/syslog-ng/files/
H A Dsyslog-ng.conf.sysvinit38 destination d_auth { file("/var/log/auth.log"); };
39 destination d_cron { file("/var/log/cron.log"); };
40 destination d_daemon { file("/var/log/daemon.log"); };
41 destination d_kern { file("/var/log/kern.log"); };
42 destination d_lpr { file("/var/log/lpr.log"); };
43 destination d_mail { file("/var/log/mail.log"); };
44 destination d_syslog { file("/var/log/syslog"); };
45 destination d_user { file("/var/log/user.log"); };
46 destination d_uucp { file("/var/log/uucp.log"); };
50 destination d_mailinfo { file("/var/log/mail/mail.info"); };
[all …]
H A Dsyslog-ng.conf.systemd38 destination d_auth { file("/var/log/auth.log"); };
39 destination d_cron { file("/var/log/cron.log"); };
40 destination d_daemon { file("/var/log/daemon.log"); };
41 destination d_kern { file("/var/log/kern.log"); };
42 destination d_lpr { file("/var/log/lpr.log"); };
43 destination d_mail { file("/var/log/mail.log"); };
44 destination d_syslog { file("/var/log/syslog"); };
45 destination d_user { file("/var/log/user.log"); };
46 destination d_uucp { file("/var/log/uucp.log"); };
50 destination d_mailinfo { file("/var/log/mail/mail.info"); };
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723cs/hal/phydm/
H A Dphydm_adc_sampling.c362 u32 var[10] = {0}; in phydm_la_cmd_fast_jgr3() local
377 PHYDM_SSCANF(input[2], DCMD_DECIMAL, &var[0]); in phydm_la_cmd_fast_jgr3()
378 PHYDM_SSCANF(input[3], DCMD_DECIMAL, &var[1]); in phydm_la_cmd_fast_jgr3()
379 PHYDM_SSCANF(input[4], DCMD_DECIMAL, &var[2]); in phydm_la_cmd_fast_jgr3()
384 if (var[0] < 10) { in phydm_la_cmd_fast_jgr3()
394 if (var[0] == 0) { /*AGC*/ in phydm_la_cmd_fast_jgr3()
397 } else if (var[0] == 1) { /*EVM*/ in phydm_la_cmd_fast_jgr3()
400 } else if (var[0] == 2) { /*SNR*/ in phydm_la_cmd_fast_jgr3()
402 if (var[1] == 0) in phydm_la_cmd_fast_jgr3()
406 } else if (var[0] == 3) { /*CFO*/ in phydm_la_cmd_fast_jgr3()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8822bs/hal/phydm/
H A Dphydm_adc_sampling.c348 u32 var[10] = {0}; in phydm_la_cmd_fast_jgr3() local
363 PHYDM_SSCANF(input[2], DCMD_DECIMAL, &var[0]); in phydm_la_cmd_fast_jgr3()
364 PHYDM_SSCANF(input[3], DCMD_DECIMAL, &var[1]); in phydm_la_cmd_fast_jgr3()
365 PHYDM_SSCANF(input[4], DCMD_DECIMAL, &var[2]); in phydm_la_cmd_fast_jgr3()
370 if (var[0] < 10) { in phydm_la_cmd_fast_jgr3()
380 if (var[0] == 0) { /*AGC*/ in phydm_la_cmd_fast_jgr3()
383 } else if (var[0] == 1) { /*EVM*/ in phydm_la_cmd_fast_jgr3()
386 } else if (var[0] == 2) { /*SNR*/ in phydm_la_cmd_fast_jgr3()
388 if (var[1] == 0) in phydm_la_cmd_fast_jgr3()
392 } else if (var[0] == 3) { /*CFO*/ in phydm_la_cmd_fast_jgr3()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8821cs/hal/phydm/
H A Dphydm_adc_sampling.c363 u32 var[10] = {0}; in phydm_la_cmd_fast_jgr3() local
378 PHYDM_SSCANF(input[2], DCMD_DECIMAL, &var[0]); in phydm_la_cmd_fast_jgr3()
379 PHYDM_SSCANF(input[3], DCMD_DECIMAL, &var[1]); in phydm_la_cmd_fast_jgr3()
380 PHYDM_SSCANF(input[4], DCMD_DECIMAL, &var[2]); in phydm_la_cmd_fast_jgr3()
385 if (var[0] < 10) { in phydm_la_cmd_fast_jgr3()
395 if (var[0] == 0) { /*AGC*/ in phydm_la_cmd_fast_jgr3()
398 } else if (var[0] == 1) { /*EVM*/ in phydm_la_cmd_fast_jgr3()
401 } else if (var[0] == 2) { /*SNR*/ in phydm_la_cmd_fast_jgr3()
403 if (var[1] == 0) in phydm_la_cmd_fast_jgr3()
407 } else if (var[0] == 3) { /*CFO*/ in phydm_la_cmd_fast_jgr3()
[all …]
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8189fs/hal/phydm/
H A Dphydm_adc_sampling.c348 u32 var[10] = {0}; in phydm_la_cmd_fast_jgr3() local
363 PHYDM_SSCANF(input[2], DCMD_DECIMAL, &var[0]); in phydm_la_cmd_fast_jgr3()
364 PHYDM_SSCANF(input[3], DCMD_DECIMAL, &var[1]); in phydm_la_cmd_fast_jgr3()
365 PHYDM_SSCANF(input[4], DCMD_DECIMAL, &var[2]); in phydm_la_cmd_fast_jgr3()
370 if (var[0] < 10) { in phydm_la_cmd_fast_jgr3()
380 if (var[0] == 0) { /*AGC*/ in phydm_la_cmd_fast_jgr3()
383 } else if (var[0] == 1) { /*EVM*/ in phydm_la_cmd_fast_jgr3()
386 } else if (var[0] == 2) { /*SNR*/ in phydm_la_cmd_fast_jgr3()
388 if (var[1] == 0) in phydm_la_cmd_fast_jgr3()
392 } else if (var[0] == 3) { /*CFO*/ in phydm_la_cmd_fast_jgr3()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723ds/hal/phydm/
H A Dphydm_adc_sampling.c349 u32 var[10] = {0}; in phydm_la_cmd_fast_jgr3() local
364 PHYDM_SSCANF(input[2], DCMD_DECIMAL, &var[0]); in phydm_la_cmd_fast_jgr3()
365 PHYDM_SSCANF(input[3], DCMD_DECIMAL, &var[1]); in phydm_la_cmd_fast_jgr3()
366 PHYDM_SSCANF(input[4], DCMD_DECIMAL, &var[2]); in phydm_la_cmd_fast_jgr3()
371 if (var[0] < 10) { in phydm_la_cmd_fast_jgr3()
381 if (var[0] == 0) { /*AGC*/ in phydm_la_cmd_fast_jgr3()
384 } else if (var[0] == 1) { /*EVM*/ in phydm_la_cmd_fast_jgr3()
387 } else if (var[0] == 2) { /*SNR*/ in phydm_la_cmd_fast_jgr3()
389 if (var[1] == 0) in phydm_la_cmd_fast_jgr3()
393 } else if (var[0] == 3) { /*CFO*/ in phydm_la_cmd_fast_jgr3()
[all …]
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8188fu/hal/phydm/
H A Dphydm_adc_sampling.c348 u32 var[10] = {0}; in phydm_la_cmd_fast_jgr3() local
363 PHYDM_SSCANF(input[2], DCMD_DECIMAL, &var[0]); in phydm_la_cmd_fast_jgr3()
364 PHYDM_SSCANF(input[3], DCMD_DECIMAL, &var[1]); in phydm_la_cmd_fast_jgr3()
365 PHYDM_SSCANF(input[4], DCMD_DECIMAL, &var[2]); in phydm_la_cmd_fast_jgr3()
370 if (var[0] < 10) { in phydm_la_cmd_fast_jgr3()
380 if (var[0] == 0) { /*AGC*/ in phydm_la_cmd_fast_jgr3()
383 } else if (var[0] == 1) { /*EVM*/ in phydm_la_cmd_fast_jgr3()
386 } else if (var[0] == 2) { /*SNR*/ in phydm_la_cmd_fast_jgr3()
388 if (var[1] == 0) in phydm_la_cmd_fast_jgr3()
392 } else if (var[0] == 3) { /*CFO*/ in phydm_la_cmd_fast_jgr3()
[all …]
/OK3568_Linux_fs/kernel/arch/s390/include/asm/
H A Dsections.h29 #define __bootdata(var) __section(".boot.data." #var) var argument
36 #define __bootdata_preserved(var) __section(".boot.preserved.data." #var) var argument

12345678910>>...71