/openbmc/qemu/libdecnumber/dpd/ |
H A D | decimal32.c | 90 uInt comb, exp; /* .. */ in decimal32FromNumber() local 137 comb=(exp>>3) & 0x18; /* msd=0, exp top 2 bits .. */ in decimal32FromNumber() 165 if (msd>=8) comb=0x18 | ((exp>>5) & 0x06) | (msd & 0x01); in decimal32FromNumber() 166 else comb=((exp>>3) & 0x18) | msd; in decimal32FromNumber() 168 targ|=comb<<26; /* add combination field .. */ in decimal32FromNumber() 192 uInt comb; /* combination field */ in decimal32ToNumber() local 200 comb=(sour>>26)&0x1f; /* combination field */ in decimal32ToNumber() 205 msd=COMBMSD[comb]; /* decode the combination field */ in decimal32ToNumber() 206 exp=COMBEXP[comb]; /* .. */ in decimal32ToNumber() 261 uInt comb; /* combination field */ in decimal32ToString() local [all …]
|
H A D | decimal128.c | 90 uInt comb, exp; /* .. */ in decimal128FromNumber() local 141 comb=(exp>>9) & 0x18; /* msd=0, exp top 2 bits .. */ in decimal128FromNumber() 162 if (msd>=8) comb=0x18 | ((exp>>11) & 0x06) | (msd & 0x01); in decimal128FromNumber() 163 else comb=((exp>>9) & 0x18) | msd; in decimal128FromNumber() 165 targhi|=comb<<26; /* add combination field .. */ in decimal128FromNumber() 200 uInt comb; /* combination field */ in decimal128ToNumber() local 224 comb=(sourhi>>26)&0x1f; /* combination field */ in decimal128ToNumber() 229 msd=COMBMSD[comb]; /* decode the combination field */ in decimal128ToNumber() 230 exp=COMBEXP[comb]; /* .. */ in decimal128ToNumber() 288 uInt comb; /* combination field */ in decimal128ToString() local [all …]
|
H A D | decimal64.c | 96 uInt comb, exp; /* .. */ in decimal64FromNumber() local 145 comb=(exp>>5) & 0x18; /* msd=0, exp top 2 bits .. */ in decimal64FromNumber() 183 if (msd>=8) comb=0x18 | ((exp>>7) & 0x06) | (msd & 0x01); in decimal64FromNumber() 184 else comb=((exp>>5) & 0x18) | msd; in decimal64FromNumber() 186 targhi|=comb<<26; /* add combination field .. */ in decimal64FromNumber() 217 uInt comb; /* combination field */ in decimal64ToNumber() local 235 comb=(sourhi>>26)&0x1f; /* combination field */ in decimal64ToNumber() 240 msd=COMBMSD[comb]; /* decode the combination field */ in decimal64ToNumber() 241 exp=COMBEXP[comb]; /* .. */ in decimal64ToNumber() 304 uInt comb; /* combination field */ in decimal64ToString() local [all …]
|
/openbmc/qemu/tests/tcg/xtensa/ |
H A D | test_mac16.S | 29 .macro test_mulxx mulop, comb, s, t, a, b 30 init_reg \comb & 2, \s, \a 31 init_reg \comb & 1, \t, \b 70 .macro test_mulxxx mulop, comb, s, t, a, b, iv, op 71 init_reg \comb & 2, \s, \a 72 init_reg \comb & 1, \t, \b 166 .macro test_mulxxx_ld mulop, ldop, comb, w, x, s, t, a, b, iv, op 167 init_reg \comb & 2, \s, \a 168 init_reg \comb & 1, \t, \b
|
/openbmc/linux/drivers/media/pci/cx18/ |
H A D | cx18-av-core.c | 287 int luma_lpf, uv_lpf, comb; in cx18_av_std_setup() local 361 comb = 0x20; in cx18_av_std_setup() 366 comb = 0x20; in cx18_av_std_setup() 371 comb = 0; in cx18_av_std_setup() 422 comb = 0x20; in cx18_av_std_setup() 428 comb = 0x20; in cx18_av_std_setup() 433 comb = 0x66; in cx18_av_std_setup() 472 comb, sc); in cx18_av_std_setup() 499 cx18_av_write(cx, 0x47b, comb); in cx18_av_std_setup()
|
/openbmc/linux/drivers/media/pci/tw68/ |
H A D | tw68-video.c | 257 int comb; in tw68_set_scale() local 296 comb = ((vdelay & 0x300) >> 2) | in tw68_set_scale() 301 __func__, comb, vdelay, vactive, hdelay, hactive); in tw68_set_scale() 302 tw_writeb(TW68_CROP_HI, comb); in tw68_set_scale() 308 comb = ((vscale & 0xf00) >> 4) | ((hscale & 0xf00) >> 8); in tw68_set_scale() 310 __func__, comb, vscale, hscale); in tw68_set_scale() 311 tw_writeb(TW68_SCALE_HI, comb); in tw68_set_scale()
|
/openbmc/linux/tools/testing/selftests/powerpc/pmu/sampling_tests/ |
H A D | mmcr1_comb_test.c | 56 FAIL_IF(EV_CODE_EXTRACT(event.attr.config, comb) != in mmcr1_comb()
|
/openbmc/linux/drivers/irqchip/ |
H A D | qcom-irq-combiner.c | 205 static int get_registers(struct platform_device *pdev, struct combiner *comb) in get_registers() argument 215 ctx.combiner = comb; in get_registers()
|
/openbmc/linux/net/mac80211/ |
H A D | main.c | 1044 const struct ieee80211_iface_combination *comb; in ieee80211_register_hw() local 1046 comb = &local->hw.wiphy->iface_combinations[i]; in ieee80211_register_hw() 1048 if (comb->num_different_channels > 1) in ieee80211_register_hw() 1054 const struct ieee80211_iface_combination *comb; in ieee80211_register_hw() local 1056 comb = &local->hw.wiphy->iface_combinations[i]; in ieee80211_register_hw() 1058 if (comb->radar_detect_widths && in ieee80211_register_hw() 1059 comb->num_different_channels > 1) in ieee80211_register_hw()
|
/openbmc/linux/drivers/media/pci/bt8xx/ |
H A D | bttv-risc.c | 273 geo->comb = (width < 769) ? 1 : 0; in bttv_calc_geo_old() 276 geo->comb = 0; in bttv_calc_geo_old() 329 geo->comb = (width < 769) ? 1 : 0; in bttv_calc_geo() 332 geo->comb = 0; in bttv_calc_geo() 341 if (geo->comb) in bttv_apply_geo()
|
H A D | bttvp.h | 138 u8 vtc,crop,comb; member
|
/openbmc/linux/drivers/net/wireless/quantenna/qtnfmac/ |
H A D | core.c | 300 struct ieee80211_iface_combination *comb; in qtnf_mac_iface_comb_free() local 305 comb = &mac->macinfo.if_comb[i]; in qtnf_mac_iface_comb_free() 306 kfree(comb->limits); in qtnf_mac_iface_comb_free() 307 comb->limits = NULL; in qtnf_mac_iface_comb_free()
|
H A D | commands.c | 1012 struct ieee80211_iface_combination *comb = mac->macinfo.if_comb; in qtnf_parse_variable_mac_info() local 1065 if (unlikely(!comb)) { in qtnf_parse_variable_mac_info() 1092 comb[n_comb].num_different_channels = in qtnf_parse_variable_mac_info() 1094 comb[n_comb].max_interfaces = in qtnf_parse_variable_mac_info() 1096 comb[n_comb].n_limits = rec->n_limits; in qtnf_parse_variable_mac_info() 1097 comb[n_comb].limits = limits; in qtnf_parse_variable_mac_info()
|
/openbmc/linux/drivers/base/power/ |
H A D | wakeup.c | 50 unsigned int comb = atomic_read(&combined_event_count); in split_counters() local 52 *cnt = (comb >> IN_PROGRESS_BITS); in split_counters() 53 *inpr = comb & MAX_IN_PROGRESS; in split_counters()
|
/openbmc/linux/net/devlink/ |
H A D | dev.c | 529 const struct devlink_reload_combination *comb; in devlink_reload_actions_valid() local 548 comb = &devlink_reload_invalid_combinations[i]; in devlink_reload_actions_valid() 549 if (ops->reload_actions == BIT(comb->action) && in devlink_reload_actions_valid() 550 ops->reload_limits == BIT(comb->limit)) in devlink_reload_actions_valid()
|
/openbmc/linux/drivers/media/usb/gspca/ |
H A D | sonixj.c | 1970 u8 comb; in setautogain() local 1973 comb = 0xc0; in setautogain() 1975 comb = 0xa0; in setautogain() 1977 comb |= 0x03; in setautogain() 1978 i2c_w1(&sd->gspca_dev, 0x13, comb); in setautogain()
|
/openbmc/linux/arch/parisc/kernel/ |
H A D | syscall.S | 265 comb,= %r2,%r20,.Lrt_sigreturn 399 comb,= %r2,%r20,.Ltrace_rt_sigreturn
|
/openbmc/linux/Documentation/userspace-api/media/v4l/ |
H A D | field-order.rst | 97 because they will have "comb" or "feathering" artefacts around
|
/openbmc/linux/drivers/media/i2c/cx25840/ |
H A D | cx25840-core.c | 1118 int luma_lpf, uv_lpf, comb; in cx25840_std_setup() local 1146 comb = 0; in cx25840_std_setup() 1154 comb = 0x20; in cx25840_std_setup() 1158 comb = 0x20; in cx25840_std_setup() 1182 comb = 0x20; in cx25840_std_setup() 1188 comb = 0x20; in cx25840_std_setup() 1196 comb = 0x66; in cx25840_std_setup() 1236 comb, sc); in cx25840_std_setup() 1264 cx25840_write(client, 0x47b, comb); in cx25840_std_setup()
|
/openbmc/linux/Documentation/driver-api/media/drivers/ |
H A D | zoran.rst | 238 NTSC Combs seems to be a decoder mode where the decoder uses a comb filter
|
/openbmc/linux/drivers/media/i2c/ |
H A D | Kconfig | 1193 Support for the Techwell tw9906 enhanced multi-standard comb filter
|
/openbmc/linux/tools/memory-model/Documentation/ |
H A D | explanation.txt | 1598 relation, and the details don't matter unless you want to comb through
|