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

1 2

  /external/webrtc/webrtc/libjingle/xmllite/
xmlprinter.h 24 static void PrintXml(std::ostream* pout, const XmlElement* pelt);
26 static void PrintXml(std::ostream* pout, const XmlElement* pelt,
xmlprinter.cc 25 XmlPrinterImpl(std::ostream* pout, XmlnsStack* ns_stack);
36 void XmlPrinter::PrintXml(std::ostream* pout, const XmlElement* element) {
38 PrintXml(pout, element, &ns_stack);
41 void XmlPrinter::PrintXml(std::ostream* pout, const XmlElement* element,
43 XmlPrinterImpl printer(pout, ns_stack);
47 XmlPrinterImpl::XmlPrinterImpl(std::ostream* pout, XmlnsStack* ns_stack)
48 : pout_(pout),
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3dx9math.inl 885 static inline D3DXCOLOR* D3DXColorAdd(D3DXCOLOR *pout, const D3DXCOLOR *pc1, const D3DXCOLOR *pc2)
887 if ( !pout || !pc1 || !pc2 ) return NULL;
888 pout->r = (pc1->r) + (pc2->r);
889 pout->g = (pc1->g) + (pc2->g);
890 pout->b = (pc1->b) + (pc2->b);
891 pout->a = (pc1->a) + (pc2->a);
892 return pout;
895 static inline D3DXCOLOR* D3DXColorLerp(D3DXCOLOR *pout, const D3DXCOLOR *pc1, const D3DXCOLOR *pc2, FLOAT s)
897 if ( !pout || !pc1 || !pc2 ) return NULL;
898 pout->r = (1-s) * (pc1->r) + s *(pc2->r)
    [all...]
d3dx9math.h 285 D3DXCOLOR* WINAPI D3DXColorAdjustContrast(D3DXCOLOR *pout, const D3DXCOLOR *pc, FLOAT s);
286 D3DXCOLOR* WINAPI D3DXColorAdjustSaturation(D3DXCOLOR *pout, const D3DXCOLOR *pc, FLOAT s);
290 D3DXMATRIX* WINAPI D3DXMatrixAffineTransformation(D3DXMATRIX *pout, FLOAT scaling, const D3DXVECTOR3 *rotationcenter, const D3DXQUATERNION *rotation,
292 D3DXMATRIX* WINAPI D3DXMatrixAffineTransformation2D(D3DXMATRIX *pout, FLOAT scaling, const D3DXVECTOR2 *protationcenter, FLOAT rotation,
296 D3DXMATRIX* WINAPI D3DXMatrixInverse(D3DXMATRIX *pout, FLOAT *pdeterminant, const D3DXMATRIX *pm);
297 D3DXMATRIX* WINAPI D3DXMatrixLookAtLH(D3DXMATRIX *pout, const D3DXVECTOR3 *peye, const D3DXVECTOR3 *pat, const D3DXVECTOR3 *pup);
298 D3DXMATRIX* WINAPI D3DXMatrixLookAtRH(D3DXMATRIX *pout, const D3DXVECTOR3 *peye, const D3DXVECTOR3 *pat, const D3DXVECTOR3 *pup);
299 D3DXMATRIX* WINAPI D3DXMatrixMultiply(D3DXMATRIX *pout, const D3DXMATRIX *pm1, const D3DXMATRIX *pm2);
300 D3DXMATRIX* WINAPI D3DXMatrixMultiplyTranspose(D3DXMATRIX *pout, const D3DXMATRIX *pm1, const D3DXMATRIX *pm2);
301 D3DXMATRIX* WINAPI D3DXMatrixOrthoLH(D3DXMATRIX *pout, FLOAT w, FLOAT h, FLOAT zn, FLOAT zf)
    [all...]
windns.h 50 #define INLINE_WRITE_FLIPPED_WORD(pout,in) INLINE_WORD_FLIP(*((UNALIGNED WORD *)(pout)),in)
51 #define INLINE_WRITE_FLIPPED_DWORD(pout,in) INLINE_DWORD_FLIP(*((UNALIGNED DWORD *)(pout)),in)
  /toolchain/binutils/binutils-2.25/gold/
binary.cc 198 unsigned char* pout = buffer; local
200 this->write_file_header<size, big_endian>(&pout);
204 0, 0, &pout);
214 1, 0, &pout);
218 3, 1, align, sym_size, &pout);
223 0, 0, 1, 0, &pout);
228 0, 0, 1, 0, &pout);
232 memcpy(pout, fileview, filesize);
233 pout += filesize;
234 memset(pout, 0, aligned_filesize - filesize)
350 unsigned char* pout = *ppout; local
    [all...]
  /external/webp/src/dsp/
lossless_enc_mips32.c 330 [pa]"+r"(pa), [pout]"+r"(pout)
349 uint32_t* pout = (uint32_t*)(OUT); \
353 ADD_TO_OUT(0, 4, 8, 12, 1, pa, pb, pout) \
358 for (i = 0; i < last; ++i) pout[i] = pa[i] + pb[i]; \
364 uint32_t* pout = (uint32_t*)(OUT); \
368 ADD_TO_OUT(0, 4, 8, 12, 0, pa, pout, pout) \
373 for (i = 0; i < last; ++i) pout[i] += pa[i]; \
enc_mips32.c 188 "sh %[level], " #N "(%[pout]) \n\t"
197 int16_t* pout = &out[0]; local
227 : [pout]"r"(pout), [ppin]"r"(ppin),
    [all...]
enc_mips_dsp_r2.c 1282 int16_t* pout = &out[0]; local
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/zip/
DeflaterOutputStreamTest.java 77 final PipedOutputStream pout = new PipedOutputStream(); local
78 PipedInputStream pin = new PipedInputStream(pout);
84 out = new DeflaterOutputStream(pout, flushing);
86 out = new GZIPOutputStream(pout, flushing);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
GZIPOutputStreamTest.java 176 PipedOutputStream pout = new PipedOutputStream(); local
177 PipedInputStream pin = new PipedInputStream(pout);
182 GZIPOutputStream out = new GZIPOutputStream(pout, true /* syncFlush */);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
PipedInputStreamTest.java 43 public PWriter(PipedOutputStream pout, int nbytes) {
44 pos = pout;
118 PipedOutputStream pout = new PipedOutputStream(pin); local
123 pout.write(i);
  /development/scripts/
usb-reset-by-serial.py 95 pout, perr = mypipe.communicate()
103 decoded = pout.decode(encoding)
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsService.java 279 final PrintWriter pout = getOutPrintWriter(); local
282 pout.println(getForUser(iprovider, mUser, mTable, mKey));
288 pout.println("Deleted "
293 pout.println(line);
  /external/openssh/
scp.c 232 int pin[2], pout[2], reserved[2]; local
250 if (pipe(pout) < 0)
266 close(pout[0]);
268 dup2(pout[1], 1);
270 close(pout[1]);
290 close(pout[1]);
291 *fdin = pout[0];
sshconnect.c 188 int pin[2], pout[2]; local
196 if (pipe(pin) < 0 || pipe(pout) < 0)
218 close(pout[0]);
219 if (dup2(pout[1], 1) < 0)
222 close(pout[1]);
246 close(pout[1]);
252 packet_set_connection(pout[0], pin[1]);
    [all...]
session.c 440 int pin[2], pout[2], perr[2]; local
450 if (pipe(pout) < 0) {
461 close(pout[0]);
462 close(pout[1]);
494 close(pout[0]);
495 close(pout[1]);
530 close(pout[0]);
531 if (dup2(pout[1], 1) < 0)
533 close(pout[1]);
592 close(pout[1])
    [all...]
  /external/libxml2/
regressions.py 153 pin, pout, perr = os.popen3(cmd)
172 th1 = thread.start_new_thread(readPfile, (pout, outfile, th1Flag))
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
ObjectInputStreamTest.java 1271 PipedOutputStream pout = new PipedOutputStream(); local
1394 PipedOutputStream pout = new PipedOutputStream(); local
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
mksyscall_solaris.pl 210 my @pout= ();
  /prebuilts/go/linux-x86/src/syscall/
mksyscall_solaris.pl 210 my @pout= ();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
longobject.c 1340 digit *pout, *pin, rem, tenpow; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Objects/
longobject.c 1354 digit *pout, *pin, rem, tenpow; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
longobject.c 1340 digit *pout, *pin, rem, tenpow; local
    [all...]
  /external/libvncserver/webclients/java-applet/ssl/
ss_vncviewer     [all...]

Completed in 1425 milliseconds

1 2