HomeSort by relevance Sort by last modified time
    Searched defs:par (Results 1 - 25 of 56) sorted by null

1 2 3

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/
wrap1a.c 3 void par (void) function
5 printf ("par\n");
  /external/clang/test/CodeGenCXX/
member-data-pointers.cpp 8 param_t par; member in struct:__anon16234
  /external/lmfit/demo/
curve1.c 32 double par[3] = { 100, 0, -10 }; /* really bad starting value */ local
46 lmcurve( n, par, m, t, y, f, &control, &status );
54 printf(" par[%i] = %12g\n", i, par[i]);
60 i, t[i], y[i], f(t[i],par), y[i] - f(t[i],par) );
curve2.c 29 double par[3] = { 100, 0, -10 }; /* really bad starting value */ local
44 lmcurve_tyd( n, par, m, t, y, dy, f, &control, &status );
52 printf(" par[%i] = %12g\n", i, par[i]);
59 i, t[i], y[i], dy[i], f(t[i],par), y[i] - f(t[i],par),
60 (y[i] - f(t[i],par))/dy[i] );
surface1.c 36 void evaluate_surface( const double *par, int m_dat, const void *data,
45 fvec[i] = D->y[i] - D->f( D->tx[i], D->tz[i], par );
52 double par[3] = { -1, 0, 1 }; /* arbitrary starting value */ local
69 lmmin( n_par, par, m_dat, (const void*) &data,
80 printf(" par[%i] = %12g\n", i, par[i]);
86 ff = f(tx[i], tz[i], par);
  /external/python/cpython2/PC/VS8.0/
build_tkinter.py 12 par = os.path.pardir variable
23 ROOT = os.path.abspath(os.path.join(here, par, par, par))
  /external/python/cpython2/PC/VS9.0/
build_tkinter.py 12 par = os.path.pardir variable
18 ROOT = os.path.abspath(os.path.join(here, par, par))
  /art/test/673-checker-throw-vmethod/src/
Main.java 26 public final void doThrow(String par) {
27 throw new Error("you are null: " + par);
30 public final void checkNotNullDirect(Object obj, String par) {
32 throw new Error("you are null: " + par);
35 public final void checkNotNullSplit(Object obj, String par) {
37 doThrow(par);
42 // In all cases, par should be subject to code sinking.
67 String par = "a"; local
69 throw new Error("you are null: " + par);
95 String par = "a" local
125 String par = "a"; local
152 String par = "a"; local
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/services/spd/tlkd/
tlkd_main.c 148 uint64_t par; local
294 par = tlkd_va_translate(x1, x3);
297 SMC_RET4(handle, (uint32_t)par, (uint32_t)(par >> 32), 0, 0);
  /art/test/672-checker-throw-method/src/
Main.java 26 static private void doThrow(String par) {
27 throw new Error("you are null: " + par);
30 static private void checkNotNullDirect(Object obj, String par) {
32 throw new Error("you are null: " + par);
35 static private void checkNotNullSplit(Object obj, String par) {
37 doThrow(par);
40 static private void checkNotNullSplitAlt(Object obj, String par) {
43 doThrow(par);
48 // In all cases, par should be subject to code sinking.
73 String par = "a" local
101 String par = "a"; local
131 String par = "a"; local
158 String par = "a"; local
169 String par = "a"; local
    [all...]
  /external/libmicrohttpd/src/testcurl/
test_concurrent_stop.c 43 * test (total number of requests will be ROUNDS * PAR).
50 #define PAR CPU_COUNT
109 pid_t par[PAR]; local
118 for (j=0;j<PAR;j++)
120 par[j] = fork ();
121 if (par[j] == 0)
150 for (j=0;j<PAR;j++)
151 waitpid (par[j], NULL, 0);
perf_get_concurrent.c 53 * test (total number of requests will be ROUNDS * PAR).
60 #define PAR CPU_COUNT
112 double rps = ((double) (PAR * ROUNDS * 1000)) / ((double) (now() - start_time));
170 pid_t par[PAR]; local
179 for (j=0;j<PAR;j++)
181 par[j] = fork ();
182 if (par[j] == 0)
214 for (j=0;j<PAR;j++)
215 waitpid (par[j], NULL, 0)
    [all...]
  /external/libvpx/libvpx/vpx_dsp/
psnrhvs.c 254 const double par = 1.0; local
265 dest->y_stride, par, src->y_crop_width,
268 dest->uv_stride, par, src->uv_crop_width,
271 dest->uv_stride, par, src->uv_crop_width,
  /libcore/ojluni/src/main/java/java/util/
ArrayPrefixHelpers.java 219 for (CumulateTask<T> par;;) { // propagate
222 if ((par = partmp) == null) {
227 int b = par.getPendingCount();
229 t = par; // both done
232 if ((lt = par.left) != null &&
233 (rt = par.right) != null) {
235 par.out = (rt.hi == fnc ? lout :
239 par.lo == org) ? CUMULATE : 0);
241 par.compareAndSetPendingCount(b, nextState)) {
243 t = par;
    [all...]
  /packages/apps/LegacyCamera/jni/feature_stab/src/dbreg/
vp_motionmodel.h 76 P'={x',y',z',w'} using a motion model M such that P'= M.par * P.
77 Where M.par is thought of as elements of a 4x4 matrix ordered row
126 VP_TRS par; /* Contains the motion paramerers. member in struct:__anon52918
132 and moves it by the par to get a point in insid
145 #define MXX(m) (m).par[0]
146 #define MXY(m) (m).par[1]
147 #define MXZ(m) (m).par[2]
148 #define MXW(m) (m).par[3]
149 #define MYX(m) (m).par[4]
150 #define MYY(m) (m).par[5
    [all...]
  /build/soong/python/
python_test.go 44 "pkg_path: %q must be a relative path contained in par file."
  /external/autotest/client/tests/signaltest/src/
signaltest.c 94 struct thread_param *par = param; local
98 struct thread_stat *stat = par->stats;
99 int policy = par->prio ? SCHED_FIFO : SCHED_OTHER;
122 sigaddset(&sigset, par->signal);
126 schedp.sched_priority = par->prio;
154 if (!par->id && !(stat->cycles & 0x0F))
187 if (par->bufmsk)
188 stat->values[stat->cycles & par->bufmsk] = diff;
190 if (par->max_cycles && par->max_cycles == stat->cycles
317 struct thread_param *par; local
    [all...]
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
LevenbergMarquardt.h 116 Scalar lm_param(void) { return par; }
124 Scalar par, sum; member in class:Eigen::LevenbergMarquardt
206 par = 0.;
275 internal::lmpar2<Scalar>(qrfac, diag, qtf, delta, par, wa1);
301 temp2 = numext::abs2(sqrt(par) * pnorm / fnorm);
321 par /= temp;
322 } else if (!(par != 0. && ratio < Scalar(.75))) {
324 par = Scalar(.5) * par;
425 par = 0.
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
KeyManagerFactory1Test.java 493 ManagerFactoryParameters par = null; local
498 keyMF[i].init(par);
TrustManagerFactory1Test.java 426 ManagerFactoryParameters par = null; local
431 trustMF[i].init(par);
  /external/autotest/client/tests/cyclictest/src/
cyclictest.c 199 struct thread_param *par = param; local
207 struct thread_stat *stat = par->stats;
208 int policy = par->prio ? SCHED_FIFO : SCHED_OTHER;
211 interval.tv_sec = par->interval / USEC_PER_SEC;
212 interval.tv_nsec = (par->interval % USEC_PER_SEC) * 1000;
232 sigaddset(&sigset, par->signal);
235 if (par->mode == MODE_CYCLIC) {
237 sigev.sigev_signo = par->signal;
239 timer_create(par->clock, &sigev, &timer);
244 schedp.sched_priority = par->prio
524 struct thread_param *par; local
    [all...]
  /external/python/cpython2/RISCOS/Modules/
drawfmodule.c 431 PyObject *par; local
434 par=PyTuple_GetItem(arg,0);
435 if(!PyInt_Check(par))
439 value=(int)PyInt_AsLong(par);
443 { par=PyTuple_GetItem(arg,m);
444 if(!PyInt_Check(par))
448 q=(int)PyInt_AsLong(par);
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
OldAndroidClassTest.java 147 int par = signature.indexOf('('); local
148 int dot = signature.lastIndexOf('.', par);
  /external/python/cpython2/Modules/
almodule.c 248 int par; local
250 if (!PyArg_ParseTuple(args, "i:SetConfig", &par))
253 if ((*func)(self->config, par) == -1)
263 int par; local
268 if ((par = (*func)(self->config)) == -1)
271 return PyInt_FromLong((long) par);
413 long par; local
415 if (!PyArg_ParseTuple(args, "l:SetConfig", &par))
418 if ((*func)(self->config, par) == -1)
428 long par; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
cursesw.h 789 NCursesWindow* par; // parent, if subwindow member in class:NCursesWindow
808 NCursesWindow(NCursesWindow& par,// parent window
814 // absolute screen pos, else if `r', they are relative to par origin
816 NCursesWindow(NCursesWindow& par,// parent window
830 : w(rhs.w), alloced(rhs.alloced), par(rhs.par), subwins(rhs.subwins), sib(rhs.sib)
    [all...]

Completed in 689 milliseconds

1 2 3