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

1 2 3

  /external/clang/test/Index/
get-cursor.c 5 struct _MyS ww; variable in typeref:struct:_MyS
  /external/clang/test/Analysis/
reinterpret-cast.cpp 57 void test(IntWrapperWrapper *ww) {
58 reinterpret_cast<IntWrapperSubclass *>(ww)->x = 42;
59 clang_analyzer_eval(reinterpret_cast<IntWrapperSubclass *>(ww)->x == 42); // expected-warning{{TRUE}}
61 clang_analyzer_eval(ww->w.x == 42); // expected-warning{{TRUE}}
62 ww->w.x = 0;
64 clang_analyzer_eval(reinterpret_cast<IntWrapperSubclass *>(ww)->x == 42); // expected-warning{{FALSE}}
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
cons-2.s 1 # Character constants. We actually see e.g. 'b' as 98, so ww just check
  /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
  /build/kati/
command.cc 110 WordWriter ww(s);
113 ww.Write(ai.str());
118 WordWriter ww(s);
120 ww.Write(ai.str());
140 WordWriter ww(s);
142 ww.Write(Dirname(tok));
149 WordWriter ww(s);
151 ww.Write(Basename(tok));
  /external/valgrind/exp-sgcheck/
sg_main.h 46 Bool rr, Bool ww, Bool xx, ULong di_handle );
48 Bool rr, Bool ww, Bool xx, ULong di_handle );
  /external/clang/test/Preprocessor/
pragma_diagnostic_sections.cpp 48 void ww( function
  /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);
  /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--;
  /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--;
  /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...]
  /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...]
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...]
floatobject.c 455 PyObject *ww = PyLong_FromLong(jj); local
457 if (ww == NULL)
459 result = float_richcompare(v, ww, op);
460 Py_DECREF(ww);
541 PyObject *ww = w; local
544 ww = PyNumber_Negative(w);
545 if (ww == NULL)
549 Py_INCREF(ww);
566 temp = PyNumber_Lshift(ww, one);
569 Py_DECREF(ww);
    [all...]
  /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);
  /external/syslinux/gpxe/src/drivers/net/
via-velocity.c 1385 u16 ww; local
1439 u16 ww; local
1475 u16 ww; local
    [all...]
  /external/skia/src/core/
SkGeometry.h 322 Sk2s ww(conic.fW);
324 Sk2s p1w = p1 * ww;
330 fDenom.fB = times_2(ww - fDenom.fC);
  /external/opencv/cv/src/
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/valgrind/include/
pub_tool_tooliface.h 542 Bool rr, Bool ww, Bool xx,
547 Bool rr, Bool ww, Bool xx,
552 Bool rr, Bool ww, Bool xx));
    [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 757 milliseconds

1 2 3