HomeSort by: relevance | last modified time | path
    Searched defs:N1 (Results 1 - 25 of 49) sorted by relevancy

1 2

  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
gold-gdb-index.h 18 namespace N1
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
breakpoint-locs-2.cc 20 namespace N1
28 N1::bar ();
breakpoint-locs.cc 20 namespace N1
30 N1::foo ();
breakpoint-locs.h 18 namespace N1
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
gold-gdb-index.h 18 namespace N1
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
breakpoint-locs-2.cc 20 namespace N1
28 N1::bar ();
breakpoint-locs.cc 20 namespace N1
30 N1::foo ();
breakpoint-locs.h 18 namespace N1
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/clk/
nouveau_nvkm_subdev_clk_nv04.c 40 int N1, M1, N2, M2, P;
41 int ret = nv04_pll_calc(&clock->subdev, info, clk, &N1, &M1, &N2, &M2, &P);
44 pv->N1 = N1;
nouveau_nvkm_subdev_clk_nv40.c 68 int N1 = (coef & 0x0000ff00) >> 8;
74 khz = ref * N1 / M1;
130 int *N1, int *M1, int *N2, int *M2, int *log2P)
143 ret = nv04_pll_calc(subdev, &pll, khz, N1, M1, N2, M2, log2P);
156 int N1, M1, N2, M2, log2P;
161 &N1, &M1, &N2, &M2, &log2P);
167 clk->npll_coef = (N1 << 8) | M1;
170 clk->npll_coef = (N2 << 24) | (M2 << 16) | (N1 << 8) | M1;
176 &N1, &M1, NULL, NULL, &log2P);
180 clk->spll = 0xc0000000 | (log2P << 16) | (N1 << 8) | M1
    [all...]
nouveau_nvkm_subdev_clk_mcp77.c 62 int N1, M1;
75 N1 = (coef & 0x0000ff00) >> 8;
78 clock = ref * N1 / M1;
nouveau_nvkm_subdev_clk_nv50.c 171 int N1, N2, M1, M2;
181 N1 = (coef & 0x0000ff00) >> 8;
184 freq = ref * N1 / M1;
nouveau_nvkm_subdev_clk_pllnv04.c 156 int M1, N1, M2, N2, log2P;
175 for (N1 = minN1; N1 <= maxN1; N1++) {
176 calcclk1 = crystal * N1 / M1;
216 *pN1 = N1;
233 int *N1, int *M1, int *N2, int *M2, int *P)
238 ret = getMNP_single(subdev, info, freq, N1, M1, P);
244 ret = getMNP_double(subdev, info, freq, N1, M1, N2, M2, P);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.compile/
compile-cplus-namespace.cc 16 namespace N1
45 using namespace N1::N2::N3::N4;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.compile/
compile-cplus-namespace.cc 16 namespace N1
45 using namespace N1::N2::N3::N4;
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/devinit/
nouveau_nvkm_subdev_devinit_nv50.c 46 int N1, M1, N2, M2, P;
55 ret = nv04_pll_calc(subdev, &info, freq, &N1, &M1, &N2, &M2, &P);
65 nvkm_mask(device, info.reg + 4, 0x00ff00ff, (M1 << 16) | N1);
74 nvkm_wr32(device, info.reg + 4, (N1 << 8) | M1);
78 nvkm_wr32(device, info.reg + 4, (N1 << 8) | M1);
nouveau_nvkm_subdev_devinit_nv04.c 169 if (oldM && pv->M1 && (oldN / oldM < pv->N1 / pv->M1))
368 int N1, M1, N2, M2, P;
375 ret = nv04_pll_calc(subdev, &info, freq, &N1, &M1, &N2, &M2, &P);
380 pv.N1 = N1;
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/fb/
nouveau_nvkm_subdev_fb_ramnv40.c 45 int N1, M1, N2, M2;
54 ret = nv04_pll_calc(subdev, &pll, freq, &N1, &M1, &N2, &M2, &log2P);
62 ram->coef = (N1 << 8) | M1;
65 ram->coef = (N2 << 24) | (M2 << 16) | (N1 << 8) | M1;
nouveau_nvkm_subdev_fb_ramgf100.c 148 int N1, M1, P;
221 &N1, NULL, &M1, &P);
230 ram_wr32(fuc, 0x10fe24, (P << 16) | (N1 << 8) | M1);
236 &N1, NULL, &M1, &P);
243 ram_wr32(fuc, 0x132004, (P << 16) | (N1 << 8) | M1);
nouveau_nvkm_subdev_fb_ramnv50.c 236 int N1, M1, N2, M2, P;
337 &N1, &M1, &N2, &M2, &P);
361 ram_mask(hwsq, 0x00400c, 0x0000ffff, (N1 << 8) | M1);
  /src/sys/external/isc/libsodium/dist/test/default/
pwhash_scrypt_ll.c 7 static const uint64_t N1 = 16U;
54 tv(passwd1, salt1, N1, r1, p1);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/bios/
pll.h 11 uint8_t N1, M1, N2, M2;
13 uint8_t M1, N1, M2, N2;
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BPFISelDAGToDAG.cpp 213 SDValue N1 = Node->getOperand(1);
219 Node = CurDAG->UpdateNodeOperands(Node, Chain, N1, R6Reg, N3);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/
LanaiISelLowering.cpp 1355 SDValue N1 = N->getOperand(1);
1357 if (isZeroOrAllOnes(N1, AllOnes)) {
1364 OtherOp = N1;
1446 SDValue N1 = N->getOperand(1);
1448 if (SDValue Result = combineSelectAndUse(N, N0, N1, DCI, AllOnes))
1450 if (N1.getNode()->hasOneUse())
1451 if (SDValue Result = combineSelectAndUse(N, N1, N0, DCI, AllOnes))
1460 SDValue N1 = N->getOperand(1);
1463 if (N1.getNode()->hasOneUse())
1464 if (SDValue Result = combineSelectAndUse(N, N1, N0, DCI, /*AllOnes=*/false)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 1486 Constant *N1 = Constant::getAllOnesValue(Ty);
1487 Value *Add = Builder.CreateAdd(Op1, N1);

Completed in 54 milliseconds

1 2