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

1 2

  /external/clang/test/Index/
get-cursor.c 5 struct _MyS ww; variable in typeref:struct:_MyS
  /external/clang/test/Sema/
cast-to-union.c 13 union u ww = (union u)1.0; // expected-error{{cast to union type from type 'double' not present in union}} variable in typeref:union:u
  /external/clang/test/Preprocessor/
pragma_diagnostic_sections.cpp 48 void ww( function
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
p_ol_wgh.cpp 485 const Word16 *ww, *we;
488 ww = &corrweight[250];
500 t0 = Mpy_32_16 (t0_h, t0_l, *ww);
501 ww--;
595 const Word16 *ww; local
600 ww = &corrweight[250];
612 t0 = Mpy_32_16(t0_h, t0_l, *ww, pOverflow);
613 ww--;
  /external/skia/samplecode/
SampleXfermodesBlur.cpp 45 SkScalar ww = SkIntToScalar(W); local
52 r.set(0, 0, ww*3/4, hh*3/4);
61 r.set(ww/3, hh/3, ww*19/20, hh*19/20);
  /external/valgrind/coregrind/m_syswrap/
syswrap-mips32-linux.c 256 Bool rr, ww, xx; local
264 ww = toBool(prot & VKI_PROT_WRITE);
267 VG_TRACK( new_mem_mmap, a, len, rr, ww, xx, di_handle );
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
p_med_ol.c 40 Word16 *ww, *we, *hp_wsp; local
52 ww = &corrweight[198];
74 R0 = Mpy_32_16(hi, lo, *ww);
75 ww--;
  /external/skia/gm/
xfermodes.cpp 86 SkScalar ww = SkIntToScalar(w); local
92 r.set(0, 0, ww*3/4, hh*3/4);
102 r.set(ww/3, hh/3, ww*19/20, hh*19/20);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
memoryobject.c 718 Py_buffer vv, ww; local
723 ww.obj = NULL;
730 if (PyObject_GetBuffer(w, &ww, PyBUF_CONTIG_RO) == -1) {
735 if (vv.itemsize != ww.itemsize || vv.len != ww.len)
738 equal = !memcmp(vv.buf, ww.buf, vv.len);
742 PyBuffer_Release(&ww);
752 PyBuffer_Release(&ww);
intobject.c 857 PyObject *vv, *ww, *result; local
871 ww = PyLong_FromLong(PyInt_AS_LONG(w));
872 if (ww == NULL) {
876 result = PyNumber_Lshift(vv, ww);
878 Py_DECREF(ww);
886 ww = PyLong_FromLong(PyInt_AS_LONG(w));
887 if (ww == NULL) {
891 result = PyNumber_Lshift(vv, ww);
893 Py_DECREF(ww);
    [all...]
floatobject.c 446 PyObject *ww = PyLong_FromLong(jj); local
448 if (ww == NULL)
450 result = float_richcompare(v, ww, op);
451 Py_DECREF(ww);
532 PyObject *ww = w; local
535 ww = PyNumber_Negative(w);
536 if (ww == NULL)
540 Py_INCREF(ww);
557 temp = PyNumber_Lshift(ww, one);
560 Py_DECREF(ww);
    [all...]
object.c 775 Py_uintptr_t ww = (Py_uintptr_t)w; local
776 return (vv < ww) ? -1 : (vv > ww) ? 1 : 0;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
memoryobject.c 718 Py_buffer vv, ww; local
723 ww.obj = NULL;
730 if (PyObject_GetBuffer(w, &ww, PyBUF_CONTIG_RO) == -1) {
735 if (vv.itemsize != ww.itemsize || vv.len != ww.len)
738 equal = !memcmp(vv.buf, ww.buf, vv.len);
742 PyBuffer_Release(&ww);
752 PyBuffer_Release(&ww);
intobject.c 837 PyObject *vv, *ww, *result; local
851 ww = PyLong_FromLong(PyInt_AS_LONG(w));
852 if (ww == NULL) {
856 result = PyNumber_Lshift(vv, ww);
858 Py_DECREF(ww);
866 ww = PyLong_FromLong(PyInt_AS_LONG(w));
867 if (ww == NULL) {
871 result = PyNumber_Lshift(vv, ww);
873 Py_DECREF(ww);
    [all...]
object.c 770 Py_uintptr_t ww = (Py_uintptr_t)w; local
771 return (vv < ww) ? -1 : (vv > ww) ? 1 : 0;
    [all...]
floatobject.c 445 PyObject *ww = PyLong_FromLong(jj); local
447 if (ww == NULL)
449 result = float_richcompare(v, ww, op);
450 Py_DECREF(ww);
531 PyObject *ww = w; local
534 ww = PyNumber_Negative(w);
535 if (ww == NULL)
539 Py_INCREF(ww);
556 temp = PyNumber_Lshift(ww, one);
559 Py_DECREF(ww);
    [all...]
  /external/python/cpython2/Objects/
memoryobject.c 718 Py_buffer vv, ww; local
723 ww.obj = NULL;
730 if (PyObject_GetBuffer(w, &ww, PyBUF_CONTIG_RO) == -1) {
735 if (vv.itemsize != ww.itemsize || vv.len != ww.len)
738 equal = !memcmp(vv.buf, ww.buf, vv.len);
742 PyBuffer_Release(&ww);
752 PyBuffer_Release(&ww);
intobject.c 850 PyObject *vv, *ww, *result; local
864 ww = PyLong_FromLong(PyInt_AS_LONG(w));
865 if (ww == NULL) {
869 result = PyNumber_Lshift(vv, ww);
871 Py_DECREF(ww);
879 ww = PyLong_FromLong(PyInt_AS_LONG(w));
880 if (ww == NULL) {
884 result = PyNumber_Lshift(vv, ww);
886 Py_DECREF(ww);
    [all...]
  /external/clang/test/Analysis/
pr22954.c 720 struct ww { struct
725 int f34(struct ww * w34, int n) {
    [all...]
  /external/opencv/cv/src/
cvundistort.cpp 472 double ww = 1./(RR[2][0]*x + RR[2][1]*y + RR[2][2]); local
473 x = xx*ww;
474 y = yy*ww;
cvfundam.cpp 517 double ww = 1./(H[6]*M[i].x + H[7]*M[i].y + 1.); local
518 double dx = (H[0]*M[i].x + H[1]*M[i].y + H[2])*ww - m[i].x;
519 double dy = (H[3]*M[i].x + H[4]*M[i].y + H[5])*ww - m[i].y;
546 double ww = 1./(h[6]*Mx + h[7]*My + 1.); local
547 double _xi = (h[0]*Mx + h[1]*My + h[2])*ww;
548 double _yi = (h[3]*Mx + h[4]*My + h[5])*ww;
554 { Mx*ww, My*ww, ww, 0, 0, 0, -Mx*ww*_xi, -My*ww*_xi }
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
huge_struct.c 65 uint8_t ww; member in struct:BigStruct
152 retVal.qq, retVal.rr, retVal.ss, retVal.tt, retVal.uu, (unsigned long)retVal.vv, retVal.ww, retVal.xx);
311 retVal.qq, retVal.rr, retVal.ss, retVal.tt, retVal.uu, (unsigned long)retVal.vv, retVal.ww, retVal.xx);
339 retVal.qq, retVal.rr, retVal.ss, retVal.tt, retVal.uu, (unsigned long)retVal.vv, retVal.ww, retVal.xx);
  /external/skia/src/core/
SkGeometry.cpp 1069 Sk2s ww = bZZ \/ (aZZ * cZZ).sqrt(); local
    [all...]
  /external/syslinux/gpxe/src/drivers/net/
via-velocity.c 1385 u16 ww; local
1439 u16 ww; local
1475 u16 ww; local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageStraighten.java 198 double ww = hh * rw / rh; local
199 float left = (float) ((rw - ww) * 0.5f);
201 float right = (float) (left + ww);

Completed in 922 milliseconds

1 2