/linux-4.4.14/arch/alpha/math-emu/ |
D | qrnnd.S | 43 #define n1 $17 macro 53 addq n1,n1,n1 54 bis n1,tmp,n1 56 cmpule d,n1,qb 57 subq n1,d,tmp 58 cmovne qb,tmp,n1 61 addq n1,n1,n1 62 bis n1,tmp,n1 64 cmpule d,n1,qb 65 subq n1,d,tmp [all …]
|
D | sfp-util.h | 20 #define udiv_qrnnd(q, r, n1, n0, d) \ argument 22 (q) = __udiv_qrnnd (&__r, (n1), (n0), (d)); \
|
/linux-4.4.14/arch/powerpc/math-emu/ |
D | udivmodti4.c | 10 _FP_W_TYPE n1, _FP_W_TYPE n0, in _fp_udivmodti4() argument 19 if (d0 > n1) in _fp_udivmodti4() 23 udiv_qrnnd (q0, n0, n1, n0, d0); in _fp_udivmodti4() 35 udiv_qrnnd (q1, n1, 0, n1, d0); in _fp_udivmodti4() 36 udiv_qrnnd (q0, n0, n1, n0, d0); in _fp_udivmodti4() 46 if (d0 > n1) in _fp_udivmodti4() 58 n1 = (n1 << bm) | (n0 >> (_FP_W_TYPE_SIZE - bm)); in _fp_udivmodti4() 62 udiv_qrnnd (q0, n0, n1, n0, d0); in _fp_udivmodti4() 85 n1 -= d0; in _fp_udivmodti4() 97 n2 = n1 >> b; in _fp_udivmodti4() [all …]
|
/linux-4.4.14/lib/mpi/ |
D | mpih-div.c | 76 mpi_limb_t n1; in mpihelp_divrem() local 80 n1 = np[nsize - 1]; in mpihelp_divrem() 82 if (n1 >= d) { in mpihelp_divrem() 83 n1 -= d; in mpihelp_divrem() 89 udiv_qrnnd(qp[i], n1, n1, np[i], d); in mpihelp_divrem() 93 udiv_qrnnd(qp[i], n1, n1, 0, d); in mpihelp_divrem() 95 np[0] = n1; in mpihelp_divrem() 102 mpi_limb_t n1, n0, n2; in mpihelp_divrem() local 108 n1 = np[1]; in mpihelp_divrem() 111 if (n1 >= d1 && (n1 > d1 || n0 >= d0)) { in mpihelp_divrem() [all …]
|
D | longlong.h | 144 #define udiv_qrnnd(q, r, n1, n0, d) \ argument 148 : "1" ((USItype)(n1)), \ 162 #define udiv_qrnnd(q, r, n1, n0, d) \ argument 164 (q) = __udiv_qrnnd(&__r, (n1), (n0), (d)); \ 339 #define udiv_qrnnd(q, r, n1, n0, d) \ 341 (q) = __udiv_qrnnd(&__r, (n1), (n0), (d)); \ 379 #define sdiv_qrnnd(q, r, n1, n0, d) \ argument 384 __xx.__i.__h = n1; __xx.__i.__l = n0; \ 421 #define udiv_qrnnd(q, r, n1, n0, d) \ argument 426 "1" ((USItype)(n1)), \ [all …]
|
/linux-4.4.14/drivers/clk/ |
D | clk-si570.c | 80 unsigned int n1; member 104 unsigned int *n1, unsigned int *hs_div) in si570_get_divs() argument 116 *n1 = ((reg[0] & N1_6_2_MASK) << 2) + ((reg[1] & N1_1_0_MASK) >> 6) + 1; in si570_get_divs() 118 if (*n1 > 1) in si570_get_divs() 119 *n1 &= ~1; in si570_get_divs() 144 err = si570_get_divs(data, &data->rfreq, &data->n1, &data->hs_div); in si570_get_defaults() 152 fdco = fout * data->n1 * data->hs_div; in si570_get_defaults() 172 reg[0] = ((data->n1 - 1) << 6) | in si570_update_rfreq() 199 unsigned int n1, hs_div; in si570_calc_divs() local 206 n1 = div_u64(div_u64(FDCO_MIN, hs_div), frequency); in si570_calc_divs() [all …]
|
/linux-4.4.14/lib/ |
D | rational.c | 35 unsigned long n, d, n0, d0, n1, d1; in rational_best_approximation() local 39 n1 = d0 = 1; in rational_best_approximation() 42 if ((n1 > max_numerator) || (d1 > max_denominator)) { in rational_best_approximation() 43 n1 = n0; in rational_best_approximation() 53 t = n0 + a * n1; in rational_best_approximation() 54 n0 = n1; in rational_best_approximation() 55 n1 = t; in rational_best_approximation() 60 *best_numerator = n1; in rational_best_approximation()
|
/linux-4.4.14/security/selinux/ss/ |
D | ebitmap.c | 29 struct ebitmap_node *n1, *n2; in ebitmap_cmp() local 34 n1 = e1->node; in ebitmap_cmp() 36 while (n1 && n2 && in ebitmap_cmp() 37 (n1->startbit == n2->startbit) && in ebitmap_cmp() 38 !memcmp(n1->maps, n2->maps, EBITMAP_SIZE / 8)) { in ebitmap_cmp() 39 n1 = n1->next; in ebitmap_cmp() 43 if (n1 || n2) in ebitmap_cmp() 200 struct ebitmap_node *n1, *n2; in ebitmap_contains() local 206 n1 = e1->node; in ebitmap_contains() 209 while (n1 && n2 && (n1->startbit <= n2->startbit)) { in ebitmap_contains() [all …]
|
/linux-4.4.14/arch/mips/bcm63xx/ |
D | cpu.c | 164 unsigned int tmp, n1, n2, m1; in detect_cpu_clock() local 168 n1 = (tmp & MIPSPLLCTL_N1_MASK) >> MIPSPLLCTL_N1_SHIFT; in detect_cpu_clock() 171 n1 += 1; in detect_cpu_clock() 174 return (16 * 1000000 * n1 * n2) / m1; in detect_cpu_clock() 179 unsigned int tmp, n1, n2, m1; in detect_cpu_clock() local 183 n1 = (tmp & DMIPSPLLCFG_N1_MASK) >> DMIPSPLLCFG_N1_SHIFT; in detect_cpu_clock() 186 return (16 * 1000000 * n1 * n2) / m1; in detect_cpu_clock()
|
/linux-4.4.14/arch/s390/include/asm/ |
D | cmpxchg.h | 35 #define __cmpxchg_double(p1, p2, o1, o2, n1, n2) \ argument 39 register __typeof__(*(p1)) __new1 asm("4") = (n1); \ 53 #define cmpxchg_double(p1, p2, o1, o2, n1, n2) \ argument 60 __cmpxchg_double(__p1, __p2, o1, o2, n1, n2); \
|
D | sfp-util.h | 54 #define udiv_qrnnd(q, r, n1, n0, d) \ argument 57 __n = ((unsigned long)(n1) << 32) + n0; \
|
D | percpu.h | 166 #define arch_this_cpu_cmpxchg_double(pcp1, pcp2, o1, o2, n1, n2) \ argument 168 typeof(pcp1) o1__ = (o1), n1__ = (n1); \
|
/linux-4.4.14/arch/mips/ralink/ |
D | rt305x.c | 226 u32 n1; in prom_soc_init() local 230 n1 = __raw_readl(sysc + SYSC_REG_CHIP_NAME1); in prom_soc_init() 232 if (n0 == RT3052_CHIP_NAME0 && n1 == RT3052_CHIP_NAME1) { in prom_soc_init() 245 } else if (n0 == RT3350_CHIP_NAME0 && n1 == RT3350_CHIP_NAME1) { in prom_soc_init() 249 } else if (n0 == RT3352_CHIP_NAME0 && n1 == RT3352_CHIP_NAME1) { in prom_soc_init() 253 } else if (n0 == RT5350_CHIP_NAME0 && n1 == RT5350_CHIP_NAME1) { in prom_soc_init() 258 panic("rt305x: unknown SoC, n0:%08x n1:%08x", n0, n1); in prom_soc_init()
|
D | rt288x.c | 97 u32 n1; in prom_soc_init() local 101 n1 = __raw_readl(sysc + SYSC_REG_CHIP_NAME1); in prom_soc_init() 104 if (n0 == RT2880_CHIP_NAME0 && n1 == RT2880_CHIP_NAME1) { in prom_soc_init() 108 panic("rt288x: unknown SoC, n0:%08x n1:%08x", n0, n1); in prom_soc_init()
|
D | rt3883.c | 131 u32 n1; in prom_soc_init() local 135 n1 = __raw_readl(sysc + RT3883_SYSC_REG_CHIPID4_7); in prom_soc_init() 138 if (n0 == RT3883_CHIP_NAME0 && n1 == RT3883_CHIP_NAME1) { in prom_soc_init() 142 panic("rt3883: unknown SoC, n0:%08x n1:%08x", n0, n1); in prom_soc_init()
|
D | mt7620.c | 517 u32 n1; in prom_soc_init() local 525 n1 = __raw_readl(sysc + SYSC_REG_CHIP_NAME1); in prom_soc_init() 529 if (n0 == MT7620_CHIP_NAME0 && n1 == MT7620_CHIP_NAME1) { in prom_soc_init() 539 } else if (n0 == MT7620_CHIP_NAME0 && n1 == MT7628_CHIP_NAME1) { in prom_soc_init() 551 panic("mt762x: unknown SoC, n0:%08x n1:%08x\n", n0, n1); in prom_soc_init()
|
/linux-4.4.14/arch/x86/include/asm/ |
D | cmpxchg.h | 208 #define __cmpxchg_double(pfx, p1, p2, o1, o2, n1, n2) \ argument 211 __typeof__(*(p1)) __old1 = (o1), __new1 = (n1); \ 225 #define cmpxchg_double(p1, p2, o1, o2, n1, n2) \ argument 226 __cmpxchg_double(LOCK_PREFIX, p1, p2, o1, o2, n1, n2) 228 #define cmpxchg_double_local(p1, p2, o1, o2, n1, n2) \ argument 229 __cmpxchg_double(, p1, p2, o1, o2, n1, n2)
|
D | percpu.h | 447 #define percpu_cmpxchg8b_double(pcp1, pcp2, o1, o2, n1, n2) \ argument 450 typeof(pcp1) __o1 = (o1), __n1 = (n1); \ 491 #define percpu_cmpxchg16b_double(pcp1, pcp2, o1, o2, n1, n2) \ argument 494 typeof(pcp1) __o1 = (o1), __n1 = (n1); \
|
/linux-4.4.14/drivers/media/pci/cobalt/ |
D | cobalt-cpld.c | 136 unsigned mult, hsdiv, n1; member 248 u8 n1, hsdiv; in cobalt_cpld_set_freq() local 271 n1 = multipliers[i_best].n1 - 1; in cobalt_cpld_set_freq() 279 regs[0] = (hsdiv << 5) | (n1 >> 2); in cobalt_cpld_set_freq() 280 regs[1] = ((n1 & 0x3) << 6) | (rfreq >> 32); in cobalt_cpld_set_freq()
|
/linux-4.4.14/fs/hfs/ |
D | string.c | 98 const unsigned char *n1, *n2; in hfs_compare_dentry() local 107 n1 = str; in hfs_compare_dentry() 110 if (caseorder[*n1++] != caseorder[*n2++]) in hfs_compare_dentry()
|
/linux-4.4.14/arch/arm64/include/asm/ |
D | cmpxchg.h | 182 #define cmpxchg_double(ptr1, ptr2, o1, o2, n1, n2) \ argument 187 (unsigned long)(n1), (unsigned long)(n2), \ 192 #define cmpxchg_double_local(ptr1, ptr2, o1, o2, n1, n2) \ argument 197 (unsigned long)(n1), (unsigned long)(n2), \ 217 #define this_cpu_cmpxchg_double_8(ptr1, ptr2, o1, o2, n1, n2) \ argument 223 o1, o2, n1, n2); \
|
/linux-4.4.14/drivers/mfd/ |
D | pcf50633-core.c | 90 int n, n1, idx = 0; in show_dump_regs() local 102 for (n1 = 0; n1 < sizeof(dump); n1++) in show_dump_regs() 105 dump[n1] = 0x00; in show_dump_regs() 107 dump[n1] = pcf50633_reg_read(pcf, n + n1); in show_dump_regs()
|
/linux-4.4.14/drivers/md/bcache/ |
D | btree.c | 1343 struct bset *n1 = btree_bset_first(new_nodes[i]); in btree_gc_coalesce() local 1353 if (__set_blocks(n1, n1->keys + keys + in btree_gc_coalesce() 1370 if (__set_blocks(n1, n1->keys + n2->keys, in btree_gc_coalesce() 1380 BUG_ON(__set_blocks(n1, n1->keys + keys, block_bytes(b->c)) > in btree_gc_coalesce() 1386 memcpy(bset_bkey_last(n1), in btree_gc_coalesce() 1390 n1->keys += keys; in btree_gc_coalesce() 1391 r[i].keys = n1->keys; in btree_gc_coalesce() 1965 struct btree *n1, *n2 = NULL, *n3 = NULL; in btree_split() local 1980 n1 = btree_node_alloc_replacement(b, op); in btree_split() 1981 if (IS_ERR(n1)) in btree_split() [all …]
|
/linux-4.4.14/net/dccp/ccids/lib/ |
D | packet_history.c | 167 static void __do_track_loss(struct tfrc_rx_hist *h, struct sk_buff *skb, u64 n1) in __do_track_loss() argument 172 if (!dccp_loss_free(s0, s1, n1)) { /* gap between S0 and S1 */ in __do_track_loss() 174 tfrc_rx_hist_entry_from_skb(tfrc_rx_hist_entry(h, 1), skb, n1); in __do_track_loss() 193 u64 n1 = tfrc_rx_hist_entry(h, 1)->tfrchrx_ndp; in __one_after_loss() local 195 if (dccp_loss_free(s2, s1, n1)) { in __one_after_loss() 243 u64 n1 = tfrc_rx_hist_entry(h, 1)->tfrchrx_ndp; in __two_after_loss() local 245 if (dccp_loss_free(s3, s1, n1)) { in __two_after_loss()
|
/linux-4.4.14/arch/sparc/math-emu/ |
D | sfp-util_64.h | 75 #define udiv_qrnnd(q, r, n1, n0, d) \ argument 81 __r1 = (n1) % __d1; \ 82 __q1 = (n1) / __d1; \
|
D | sfp-util_32.h | 76 #define udiv_qrnnd(q, r, n1, n0, d) \ argument 104 "1" ((USItype)(n1)), \
|
/linux-4.4.14/arch/sh/math-emu/ |
D | sfp-util.h | 31 #define udiv_qrnnd(q, r, n1, n0, d) \ argument 38 __r1 = (n1) % __d1; \ 39 __q1 = (n1) / __d1; \
|
/linux-4.4.14/arch/powerpc/platforms/ps3/ |
D | repository.c | 53 static void _dump_node_name(unsigned int lpar_id, u64 n1, u64 n2, u64 n3, in _dump_node_name() argument 57 _dump_field("n1: ", n1, func, line); in _dump_node_name() 65 static void _dump_node(unsigned int lpar_id, u64 n1, u64 n2, u64 n3, u64 n4, in _dump_node() argument 69 _dump_field("n1: ", n1, func, line); in _dump_node() 121 static int read_node(unsigned int lpar_id, u64 n1, u64 n2, u64 n3, u64 n4, in read_node() argument 134 result = lv1_read_repository_node(lpar_id, n1, n2, n3, n4, &v1, in read_node() 140 dump_node_name(lpar_id, n1, n2, n3, n4); in read_node() 144 dump_node(lpar_id, n1, n2, n3, n4, v1, v2); in read_node() 1073 static int create_node(u64 n1, u64 n2, u64 n3, u64 n4, u64 v1, u64 v2) in create_node() argument 1077 dump_node(0, n1, n2, n3, n4, v1, v2); in create_node() [all …]
|
/linux-4.4.14/include/scsi/ |
D | iscsi_proto.h | 45 static inline int iscsi_sna_lt(u32 n1, u32 n2) in iscsi_sna_lt() argument 47 return (s32)(n1 - n2) < 0; in iscsi_sna_lt() 50 static inline int iscsi_sna_lte(u32 n1, u32 n2) in iscsi_sna_lte() argument 52 return (s32)(n1 - n2) <= 0; in iscsi_sna_lte() 55 static inline int iscsi_sna_gt(u32 n1, u32 n2) in iscsi_sna_gt() argument 57 return (s32)(n1 - n2) > 0; in iscsi_sna_gt() 60 static inline int iscsi_sna_gte(u32 n1, u32 n2) in iscsi_sna_gte() argument 62 return (s32)(n1 - n2) >= 0; in iscsi_sna_gte()
|
/linux-4.4.14/drivers/isdn/hisax/ |
D | s0box.c | 39 register u_char n1, n2; in readreg() local 46 n1 = (inb_p(padr + 1) >> 3) & 0x17; in readreg() 51 return nibtab[n1] | (nibtab[n2] << 4); in readreg() 58 register u_char n1, n2; in read_fifo() local 66 n1 = (inb_p(padr + 1) >> 3) & 0x17; in read_fifo() 69 *(data++) = nibtab[n1] | (nibtab[n2] << 4); in read_fifo()
|
/linux-4.4.14/tools/testing/selftests/pstore/ |
D | pstore_post_reboot_tests | 22 mount_point=`echo ${mount_info} | cut -d' ' -f2 | head -n1` 27 mount_point=`grep pstore /proc/mounts | cut -d' ' -f2 | head -n1`
|
/linux-4.4.14/drivers/media/tuners/ |
D | mc44s803.c | 221 u32 r1, r2, n1, n2, lo1, lo2, freq, val; in mc44s803_set_params() local 229 n1 = (c->frequency + MC44S803_IF1 + 500000) / 1000000; in mc44s803_set_params() 230 freq = MC44S803_OSC / r1 * n1; in mc44s803_set_params() 231 lo1 = ((60 * n1) + (r1 / 2)) / r1; in mc44s803_set_params() 250 MC44S803_REG_SM(n1-2, MC44S803_LO1); in mc44s803_set_params()
|
D | mt20xx.c | 72 int n1=1,n2,f; in mt2032_spurcheck() local 83 n2=-n1; in mt2032_spurcheck() 84 f=n1*(f1-f2); in mt2032_spurcheck() 88 tuner_dbg("spurtest n1=%d n2=%d ftest=%d\n",n1,n2,f); in mt2032_spurcheck() 91 tuner_dbg("mt2032 spurcheck triggered: %d\n",n1); in mt2032_spurcheck() 93 n1++; in mt2032_spurcheck() 94 } while (n1<5); in mt2032_spurcheck()
|
/linux-4.4.14/sound/core/seq/ |
D | seq_queue.h | 120 #define udiv_qrnnd(q, r, n1, n0, d) \ argument 125 "1" ((u32)(n1)), \
|
/linux-4.4.14/fs/hpfs/ |
D | name.c | 75 const unsigned char *n1, unsigned l1, in hpfs_compare_names() argument 82 unsigned char c1 = upcase(hpfs_sb(s)->sb_cp_table,n1[i]); in hpfs_compare_names()
|
/linux-4.4.14/drivers/video/fbdev/savage/ |
D | savagefb_driver.c | 422 unsigned char n1, n2, best_n1=16+2, best_n2=2, best_m=125+2; in SavageCalcClock() local 437 for (n1=min_n1+2; n1<=max_n1+2; n1++) { in SavageCalcClock() 438 m = (freq * n1 * (1 << n2) + HALF_BASE_FREQ) / in SavageCalcClock() 442 if ((m * BASE_FREQ >= freq_min * n1) && in SavageCalcClock() 443 (m * BASE_FREQ <= freq_max * n1)) { in SavageCalcClock() 444 diff = freq * (1 << n2) * n1 - BASE_FREQ * m; in SavageCalcClock() 450 best_n1 = n1; in SavageCalcClock() 469 unsigned char n1, n2; in common_calc_clock() local 475 for (n1 = min_n1+2; n1 <= max_n1+2; n1++) { in common_calc_clock() 476 m = (freq * n1 * (1 << n2) + HALF_BASE_FREQ) / in common_calc_clock() [all …]
|
/linux-4.4.14/arch/powerpc/include/asm/ |
D | sfp-machine.h | 315 #define udiv_qrnnd(q, r, n1, n0, d) \ argument 321 __r1 = (n1) % __d1; \ 322 __q1 = (n1) / __d1; \
|
/linux-4.4.14/drivers/ssb/ |
D | main.c | 840 u32 n1, n2, clock, m1, m2, m3, mc; in ssb_calc_clock_rate() local 842 n1 = (n & SSB_CHIPCO_CLK_N1); in ssb_calc_clock_rate() 854 n1 = clkfactor_f6_resolve(n1); in ssb_calc_clock_rate() 858 n1 += SSB_CHIPCO_CLK_T2_BIAS; in ssb_calc_clock_rate() 860 SSB_WARN_ON(!((n1 >= 2) && (n1 <= 7))); in ssb_calc_clock_rate() 872 clock = SSB_CHIPCO_CLK_BASE2 * n1 * n2; in ssb_calc_clock_rate() 875 clock = SSB_CHIPCO_CLK_BASE1 * n1 * n2; in ssb_calc_clock_rate()
|
/linux-4.4.14/drivers/staging/lustre/lustre/ldlm/ |
D | interval_tree.c | 99 static inline int node_compare(struct interval_node *n1, in node_compare() argument 102 return extent_compare(&n1->in_extent, &n2->in_extent); in node_compare() 105 static inline int node_equal(struct interval_node *n1, in node_equal() argument 108 return extent_equal(&n1->in_extent, &n2->in_extent); in node_equal()
|
/linux-4.4.14/drivers/pinctrl/ |
D | devicetree.c | 54 struct pinctrl_dt_map *dt_map, *n1; in pinctrl_dt_free_maps() local 56 list_for_each_entry_safe(dt_map, n1, &p->dt_maps, node) { in pinctrl_dt_free_maps()
|
D | core.c | 913 struct pinctrl_state *state, *n1; in pinctrl_free() local 917 list_for_each_entry_safe(state, n1, &p->states, node) { in pinctrl_free()
|
/linux-4.4.14/Documentation/input/ |
D | elantech.txt | 271 w h n1 n0 ds3 ds2 ds1 ds0 282 n1..n0 = number of fingers on touchpad 319 n1 n0 p2 p1 1 p3 R L 323 n1..n0 = number of fingers on touchpad 427 n1 n0 w3 w2 . . R L 430 n1..n0 = number of fingers on touchpad 489 n1 n0 ay8 ax8 . . R L 492 n1..n0 = number of fingers on touchpad 570 n1 n0 w3 w2 0 1 R L 573 n1..n0 = number of fingers on touchpad
|
D | alps.txt | 252 byte 0: 1 1 1 n3 1 n2 n1 x24
|
/linux-4.4.14/drivers/thermal/ |
D | imx_thermal.c | 351 int t1, n1; in imx_get_sensor_data() local 381 n1 = val >> 20; in imx_get_sensor_data() 402 do_div(temp64, FACTOR1 * n1 - FACTOR2); in imx_get_sensor_data() 404 data->c2 = n1 * data->c1 + 1000 * t1; in imx_get_sensor_data()
|
/linux-4.4.14/scripts/ |
D | decode_stacktrace.sh | 35 local base_addr=$(nm "$vmlinux" | grep -i ' t ' | awk "/ $name\$/ {print \$1}" | head -n1)
|
D | check_extable.sh | 54 …eval $(objdump -rj .altinstructions ${obj} | grep -B1 "${section}+${section_offset}" | head -n1 | …
|
/linux-4.4.14/tools/perf/scripts/python/ |
D | export-to-postgresql.py | 678 n1 = len(short_name) 681 fmt = "!hiqiqi" + str(n1) + "si" + str(n2) + "si" + str(n3) + "s" 682 value = struct.pack(fmt, 5, 8, dso_id, 8, machine_id, n1, short_name, n2, long_name, n3, build_id)
|
/linux-4.4.14/drivers/isdn/divert/ |
D | isdn_divert.c | 598 u_char n, n1; in interrogate_success() local 653 if (!(n1 = put_address(stp, p, n & 0xFF))) continue; in interrogate_success() 655 p += n1; in interrogate_success() 656 n -= n1; in interrogate_success() 669 if (!(n1 = put_address(stp, p, n & 0xFF))) continue; in interrogate_success()
|
/linux-4.4.14/drivers/of/ |
D | resolver.c | 198 const char *n1 = strrchr(dn1->full_name, '/') ? : "/"; in __of_node_name_cmp() local 201 return of_node_cmp(n1, n2); in __of_node_name_cmp()
|
D | unittest.c | 502 struct device_node *n1, *n2, *n21, *nremove, *parent, *np; in of_unittest_changeset() local 505 n1 = __of_node_dup(NULL, "/testcase-data/changeset/n1"); in of_unittest_changeset() 506 unittest(n1, "testcase setup failure\n"); in of_unittest_changeset() 518 n1->parent = parent; in of_unittest_changeset() 526 unittest(!of_changeset_attach_node(&chgset, n1), "fail attach n1\n"); in of_unittest_changeset()
|
/linux-4.4.14/drivers/crypto/ux500/cryp/ |
D | cryp_core.c | 138 u8 n1; in swap_bits_in_byte() local 143 n1 = ((b & R_SHIFT_4_MASK) >> 4) | (b & ~(R_SHIFT_4_MASK >> 4)); in swap_bits_in_byte() 145 n1 = ((n1 & R_SHIFT_2_MASK) >> 2) | (n1 & ~(R_SHIFT_2_MASK >> 2)); in swap_bits_in_byte() 147 n1 = (n1 & R_SHIFT_1_MASK) >> 1; in swap_bits_in_byte() 157 return n1 | n2; in swap_bits_in_byte()
|
/linux-4.4.14/security/apparmor/ |
D | domain.c | 582 static char *new_compound_name(const char *n1, const char *n2) in new_compound_name() argument 584 char *name = kmalloc(strlen(n1) + strlen(n2) + 3, GFP_KERNEL); in new_compound_name() 586 sprintf(name, "%s//%s", n1, n2); in new_compound_name()
|
/linux-4.4.14/include/net/ |
D | llc_conn.h | 53 u32 n1; /* max nbr octets in I PDU */ member
|
/linux-4.4.14/Documentation/device-mapper/ |
D | statistics.txt | 68 histogram:n1,n2,n3,n4,... - collect histogram of latencies. The 69 numbers n1, n2, etc are times that represent the boundaries 124 precise_timestamps histogram:n1,n2,n3,...
|
/linux-4.4.14/net/core/ |
D | neighbour.c | 457 struct neighbour *n1, *rc, *n = neigh_alloc(tbl, dev); in __neigh_create() local 506 for (n1 = rcu_dereference_protected(nht->hash_buckets[hash_val], in __neigh_create() 508 n1 != NULL; in __neigh_create() 509 n1 = rcu_dereference_protected(n1->next, in __neigh_create() 511 if (dev == n1->dev && !memcmp(n1->primary_key, pkey, key_len)) { in __neigh_create() 513 neigh_hold(n1); in __neigh_create() 514 rc = n1; in __neigh_create() 1198 struct neighbour *n2, *n1 = neigh; in neigh_update() local 1214 n1 = n2; in neigh_update() 1216 n1->output(n1, skb); in neigh_update()
|
/linux-4.4.14/drivers/media/usb/gspca/ |
D | t613.c | 590 static const u8 n1[] = in sd_init() local 620 reg_w_buf(gspca_dev, n1, sizeof n1); in sd_init()
|
/linux-4.4.14/Documentation/ia64/ |
D | xen.txt | 118 "com1=19200,8n1 console=vga,com1". For example, 119 append="com1=19200,8n1 console=vga,com1 -- rhgb console=tty0 \
|
/linux-4.4.14/tools/vm/ |
D | slabinfo.c | 1063 char *n1, *n2; in sort_aliases() local 1065 n1 = a1->name; in sort_aliases() 1068 n1 = a1->ref; in sort_aliases() 1071 if (strcasecmp(n1, n2) > 0) { in sort_aliases()
|
/linux-4.4.14/drivers/video/fbdev/intelfb/ |
D | intelfbhw.c | 938 u32 m1, m2, n, p1, p2, n1, testm; in calc_pll_params() local 1013 n1 = n - 2; in calc_pll_params() 1017 m, m1, m2, n, n1, p, p1, p2, in calc_pll_params() 1019 calc_vclock(index, m1, m2, n1, p1, p2, 0), in calc_pll_params() 1023 *retn = n1; in calc_pll_params() 1026 *retclock = calc_vclock(index, m1, m2, n1, p1, p2, 0); in calc_pll_params()
|
/linux-4.4.14/net/bluetooth/ |
D | smp.c | 247 const u8 n1[16], const u8 n2[16], const u8 a1[7], in smp_f5() 264 SMP_DBG("n1 %16phN n2 %16phN", n1, n2); in smp_f5() 277 memcpy(m + 32, n1, 16); in smp_f5() 300 const u8 n1[16], const u8 n2[16], const u8 r[16], in smp_f6() 308 SMP_DBG("n1 %16phN n2 %16phN", n1, n2); in smp_f6() 316 memcpy(m + 49, n1, 16); in smp_f6() 3566 const u8 n1[16] = { in test_f5() local 3583 err = smp_f5(tfm_cmac, w, n1, n2, a1, a2, mackey, ltk); in test_f5() 3601 const u8 n1[16] = { in test_f6() local 3619 err = smp_f6(tfm_cmac, w, n1, n2, r, io_cap, a1, a2, res); in test_f6()
|
/linux-4.4.14/net/mac80211/ |
D | tx.c | 3092 int i, have_bits = 0, n1, n2; in __ieee80211_beacon_add_tim() local 3123 n1 = 0; in __ieee80211_beacon_add_tim() 3126 n1 = i & 0xfe; in __ieee80211_beacon_add_tim() 3130 n2 = n1; in __ieee80211_beacon_add_tim() 3131 for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) { in __ieee80211_beacon_add_tim() 3139 *pos++ = n1 | aid0; in __ieee80211_beacon_add_tim() 3141 skb_put(skb, n2 - n1); in __ieee80211_beacon_add_tim() 3142 memcpy(pos, ps->tim + n1, n2 - n1 + 1); in __ieee80211_beacon_add_tim() 3144 tim[1] = n2 - n1 + 4; in __ieee80211_beacon_add_tim()
|
/linux-4.4.14/drivers/hid/ |
D | wacom_sys.c | 489 int n1,n2; in wacom_are_sibling() local 500 n1 = strrchr(hdev->phys, '.') - hdev->phys; in wacom_are_sibling() 502 if (n1 != n2 || n1 <= 0 || n2 <= 0) in wacom_are_sibling() 505 return !strncmp(hdev->phys, sibling->phys, n1); in wacom_are_sibling()
|
/linux-4.4.14/arch/mips/include/asm/mach-bcm63xx/ |
D | bcm63xx_regs.h | 401 #define ADSLPLLCTL_VAL(n1, n2, m1ref, m2ref, m1cpu, m1bus, m2bus) \ argument 402 (((n1) << ADSLPLLCTL_N1_SHIFT) | \
|
/linux-4.4.14/drivers/staging/comedi/ |
D | comedi_fops.c | 2488 unsigned int rp, n1, n2; in comedi_read() local 2524 n1 = min(n, async->prealloc_bufsz - rp); in comedi_read() 2525 n2 = n - n1; in comedi_read() 2526 m = copy_to_user(buf, async->prealloc_buf + rp, n1); in comedi_read() 2530 m = copy_to_user(buf + n1, async->prealloc_buf, n2); in comedi_read()
|
/linux-4.4.14/Documentation/fb/ |
D | fbcon.txt | 115 4. fbcon=vc:<n1>-<n2> 118 specified by the values 'n1' and 'n2'. The rest of the consoles
|
/linux-4.4.14/include/math-emu/ |
D | op-4.h | 341 #define umul_ppppmnnn(p3,p2,p1,p0,m,n2,n1,n0) \ argument 345 umul_ppmm(p2,_t,m,n1); \
|
/linux-4.4.14/net/llc/ |
D | af_llc.c | 1055 llc->n1 = opt; in llc_ui_setsockopt() 1133 val = llc->n1; break; in llc_ui_getsockopt()
|
/linux-4.4.14/fs/nfsd/ |
D | nfs4state.c | 1890 static int same_name(const char *n1, const char *n2) in same_name() argument 1892 return 0 == memcmp(n1, n2, HEXDIR_LEN); in same_name()
|