Searched defs:sd (Results 1 - 9 of 9) sorted by relevance

/device/google/contexthub/firmware/lib/builtins/
H A Daeabi_l2f.c35 int sd = N - __builtin_clzll(a); /* number of significant digits */ local
36 int e = sd - 1; /* exponent */
37 if (sd > FLT_MANT_DIG)
47 switch (sd)
55 a = ((du_int)a >> (sd - (FLT_MANT_DIG+2))) |
56 ((a & ((du_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0);
72 a <<= (FLT_MANT_DIG - sd);
H A Daeabi_ul2f.c33 int sd = N - __builtin_clzll(a); /* number of significant digits */ local
34 int e = sd - 1; /* 8 exponent */
35 if (sd > FLT_MANT_DIG)
45 switch (sd)
53 a = (a >> (sd - (FLT_MANT_DIG+2))) |
54 ((a & ((du_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0);
70 a <<= (FLT_MANT_DIG - sd);
/device/linaro/bootloader/OpenPlatformPkg/Drivers/Net/MarvellYukonDxe/
H A Dif_msk.c2266 struct msk_stat_desc *sd; local
2283 sd = &sc->msk_stat_ring[cons];
2284 control = le32toh (sd->msk_control);
2289 sd->msk_control = htole32 (control);
2290 status = le32toh (sd->msk_status);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A Dsysmodule.c53 PyObject *sd = tstate->interp->sysdict; local
54 if (sd == NULL)
56 return PyDict_GetItemString(sd, name);
75 PyObject *sd = tstate->interp->sysdict; local
77 if (PyDict_GetItemString(sd, name) == NULL)
80 return PyDict_DelItemString(sd, name);
83 return PyDict_SetItemString(sd, name, v);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Dsysmodule.c53 PyObject *sd = tstate->interp->sysdict; local
54 if (sd == NULL)
56 return PyDict_GetItemString(sd, name);
75 PyObject *sd = tstate->interp->sysdict; local
77 if (PyDict_GetItemString(sd, name) == NULL)
80 return PyDict_DelItemString(sd, name);
83 return PyDict_SetItemString(sd, name, v);
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
H A Dgetaddrinfo.c1186 struct syslog_data sd = SYSLOG_DATA_INIT; local
1187 syslog_r(LOG_NOTICE|LOG_AUTH, &sd,
1201 struct syslog_data sd = SYSLOG_DATA_INIT; local
1202 syslog_r(LOG_NOTICE|LOG_AUTH, &sd,
/device/linaro/bootloader/arm-trusted-firmware/include/drivers/
H A Dufs.h463 } sd; member in struct:resp_upiu
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dabstract.c374 Py_ssize_t sd, dim; local
380 sd = view->itemsize;
382 sd == view->strides[0]);
386 if (view->strides[i] != sd) return 0;
387 sd *= dim;
395 Py_ssize_t sd, dim; local
401 sd = view->itemsize;
403 sd == view->strides[0]);
407 if (view->strides[i] != sd) return 0;
408 sd *
661 Py_ssize_t sd; local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dabstract.c374 Py_ssize_t sd, dim; local
380 sd = view->itemsize;
382 sd == view->strides[0]);
386 if (view->strides[i] != sd) return 0;
387 sd *= dim;
395 Py_ssize_t sd, dim; local
401 sd = view->itemsize;
403 sd == view->strides[0]);
407 if (view->strides[i] != sd) return 0;
408 sd *
661 Py_ssize_t sd; local
[all...]

Completed in 36 milliseconds