HomeSort by relevance Sort by last modified time
    Searched full:optr (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /external/webkit/JavaScriptCore/wtf/
RetainPtr.h 95 PtrType optr = o.get(); local
96 if (optr)
97 CFRetain(optr);
99 m_ptr = optr;
107 PtrType optr = o.get(); local
108 if (optr)
109 CFRetain(optr);
111 m_ptr = optr;
117 template <typename T> inline RetainPtr<T>& RetainPtr<T>::operator=(PtrType optr)
119 if (optr)
    [all...]
RefPtr.h 100 T* optr = o.get(); local
101 refIfNotNull(optr);
103 m_ptr = optr;
110 T* optr = o.get(); local
111 refIfNotNull(optr);
113 m_ptr = optr;
118 template <typename T> inline RefPtr<T>& RefPtr<T>::operator=(T* optr)
120 refIfNotNull(optr);
122 m_ptr = optr;
PassOwnPtr.h 76 template <typename T> inline PassOwnPtr<T>& PassOwnPtr<T>::operator=(T* optr)
79 m_ptr = optr;
86 template <typename T> inline PassOwnPtr<T>& PassOwnPtr<T>::operator=(const PassOwnPtr<T>& optr)
89 m_ptr = optr.release();
96 template <typename T> template <typename U> inline PassOwnPtr<T>& PassOwnPtr<T>::operator=(const PassOwnPtr<U>& optr)
99 m_ptr = optr.release();
PassRefPtr.h 156 T* optr = o.get(); local
157 refIfNotNull(optr);
159 m_ptr = optr;
164 template <typename T> inline PassRefPtr<T>& PassRefPtr<T>::operator=(T* optr)
166 refIfNotNull(optr);
168 m_ptr = optr;
ListRefPtr.h 40 ListRefPtr& operator=(T* optr) { RefPtr<T>::operator=(optr); return *this; }
  /external/webkit/JavaScriptCore/API/
JSRetainPtr.h 80 T optr = o.get(); local
81 if (optr)
82 JSRetain(optr);
84 m_ptr = optr;
92 T optr = o.get(); local
93 if (optr)
94 JSRetain(optr);
96 m_ptr = optr;
102 template <typename T> inline JSRetainPtr<T>& JSRetainPtr<T>::operator=(T optr)
104 if (optr)
    [all...]
  /external/webkit/WebCore/platform/win/
COMPtr.h 136 T* optr = o.get(); local
137 if (optr)
138 optr->AddRef();
140 m_ptr = optr;
148 T* optr = o.get(); local
149 if (optr)
150 optr->AddRef();
152 m_ptr = optr;
158 template <typename T> inline COMPtr<T>& COMPtr<T>::operator=(T* optr)
160 if (optr)
    [all...]
  /external/webkit/JavaScriptCore/wtf/gtk/
GRefPtr.h 84 T* optr = o.get(); local
85 if (optr)
86 refGPtr(optr);
88 m_ptr = optr;
94 template <typename T> inline GRefPtr<T>& GRefPtr<T>::operator=(T* optr)
97 if (optr)
98 refGPtr(optr);
99 m_ptr = optr;
  /bionic/libc/stdio/
flags.c 42 * to be passed to an open() syscall through *optr.
46 __sflags(const char *mode, int *optr)
80 *optr = m | o;
  /external/webkit/JavaScriptCore/runtime/
Protect.h 138 T* optr = o.m_ptr; local
139 gcProtectNullTolerant(optr);
141 m_ptr = optr;
145 template <class T> inline ProtectedPtr<T>& ProtectedPtr<T>::operator=(T* optr)
147 gcProtectNullTolerant(optr);
149 m_ptr = optr;
WeakGCPtr.h 79 template <typename T> inline WeakGCPtr<T>& WeakGCPtr<T>::operator=(T* optr)
81 assign(optr);
  /frameworks/base/libs/rs/
rsAllocation.cpp 369 uint16_t *oPtr = static_cast<uint16_t *>(out.getElement(0, y));
374 *oPtr = rsBoxFilter565(i1[0], i1[1], i2[0], i2[1]);
375 oPtr ++;
388 uint32_t *oPtr = static_cast<uint32_t *>(out.getElement(0, y));
393 *oPtr = rsBoxFilter8888(i1[0], i1[1], i2[0], i2[1]);
394 oPtr ++;
407 uint8_t *oPtr = static_cast<uint8_t *>(out.getElement(0, y));
412 *oPtr = (uint8_t)(((uint32_t)i1[0] + i1[1] + i2[0] + i2[1]) * 0.25f);
413 oPtr ++;
  /external/speex/libspeex/
fftwrap.c 210 float *optr = t->out; local
217 out[0] = optr[0];
219 out[i] = optr[i+1];
228 float *optr = t->out; local
239 out[i] = optr[i];
  /bionic/libc/netbsd/nameser/
ns_parse.c 80 const u_char *optr = ptr; local
99 return (ptr - optr);
  /external/openssl/crypto/comp/
c_zlib.c 435 unsigned char *optr; /* Position in output buffer */ member in struct:__anon3924
616 ctx->optr = ctx->obuf;
629 ret = BIO_write(b->next_bio, ctx->optr, ctx->ocount);
638 ctx->optr += ret;
649 ctx->optr = ctx->obuf;
683 ret = BIO_write(b->next_bio, ctx->optr, ctx->ocount);
689 ctx->optr += ret;
697 ctx->optr = ctx->obuf;
  /external/tcpdump/
print-isoclns.c 715 const u_int8_t *optr,*source_address,*dest_address; local
725 optr = pptr;
780 else printf("(%s)", osi_cksum(optr, clnp_header->length_indicator) ? "incorrect" : "correct");
972 const u_int8_t *optr; local
1746 const u_int8_t *optr, *pptr, *tptr; local
    [all...]
  /external/ppp/pppd/
eap.c 651 u_char clear[8], cipher[8], dig[SHA_DIGESTSIZE], *optr, *cp; local
772 optr = outp;
806 i = outp - optr - 1;
807 *optr = i;
823 while (optr < outp) {
827 *optr++ ^= *cp++;
832 SHA1Update(&ctxt, optr - SHA_DIGESTSIZE,
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.3.1/libexec/gcc/arm-eabi/4.3.1/
collect2 
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/libexec/gcc/arm-eabi/4.4.0/
collect2 
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/libexec/gcc/i686-unknown-linux-gnu/4.2.1/
collect2 
  /external/sonivox/arm-fm-22k/bin/
arm-fm-22k 
  /external/sonivox/arm-hybrid-22k/bin/
arm-hybrid-22k 
  /ndk/build/platforms/android-3/arch-arm/usr/lib/
libc.so 
  /ndk/build/platforms/android-4/arch-arm/usr/lib/
libc.so 
  /ndk/build/platforms/android-5/arch-arm/usr/lib/
libc.so 

Completed in 158 milliseconds

1 2 3 4