HomeSort by relevance Sort by last modified time
    Searched refs:Dest (Results 1 - 15 of 15) sorted by null

  /external/libvpx/vp8/common/
common.h 25 #define vp8_copy( Dest, Src) { \
26 assert( sizeof( Dest) == sizeof( Src)); \
27 vpx_memcpy( Dest, Src, sizeof( Src)); \
32 #define vp8_copy_array( Dest, Src, N) { \
33 assert( sizeof( *Dest) == sizeof( *Src)); \
34 vpx_memcpy( Dest, Src, N * sizeof( *Src)); \
37 #define vp8_zero( Dest) vpx_memset( &Dest, 0, sizeof( Dest));
39 #define vp8_zero_array( Dest, N) vpx_memset( Dest, 0, N * sizeof( *Dest))
    [all...]
blockd.h 66 #define VP8_COMBINEENTROPYCONTEXTS( Dest, A, B) \
67 Dest = ((A)!=0) + ((B)!=0);
boolcoder.h 365 bool_writer(c_spec &, uchar *Dest, size_t Len);
411 void new_buffer(uchar *dest, uint Len);
  /external/chromium/base/
basictypes.h 265 // bit_cast<Dest,Source> is a template function that implements the
266 // equivalent of "*reinterpret_cast<Dest*>(&source)". We need this in
316 // WARNING: if Dest or Source is a non-POD type, the result of the memcpy
319 template <class Dest, class Source>
320 inline Dest bit_cast(const Source& source) {
321 // Compile time assertion: sizeof(Dest) == sizeof(Source)
322 // A compile error here means your Dest and Source have different sizes.
323 typedef char VerifySizesAreEqual [sizeof(Dest) == sizeof(Source) ? 1 : -1];
325 Dest dest; local
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
compat.h 274 template <class Dest, class Source>
275 inline Dest bit_cast(const Source& source) {
276 // Compile time assertion: sizeof(Dest) == sizeof(Source)
277 // A compile error here means your Dest and Source have different sizes.
278 typedef char VerifySizesAreEqual [sizeof(Dest) == sizeof(Source) ? 1 :
280 Dest dest; local
281 memcpy(&dest, &source, sizeof(dest));
282 return dest;
    [all...]
  /external/v8/src/
globals.h 598 template <class Dest, class Source>
599 inline Dest bit_cast(const Source& source) {
600 // Compile time assertion: sizeof(Dest) == sizeof(Source)
601 // A compile error here means your Dest and Source have different sizes.
602 typedef char VerifySizesAreEqual[sizeof(Dest) == sizeof(Source) ? 1 : -1];
604 Dest dest; local
605 memcpy(&dest, &source, sizeof(dest));
606 return dest;
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/BusAccess/Shm_Common/
shmBus.h 134 void whalBus_MemCopyFrom (TI_HANDLE hWhalBus, UINT8 *Dest, char *SrcOffset, int Len);
shmBus.c 342 void whalBus_MemCopyFrom (TI_HANDLE hWhalBus, UINT8 *Dest, char *SrcOffset, int Len)
345 TNETWIF_ReadMemSync(((whalBus_T *)hWhalBus)->hTNETWIF,(UINT32)SrcOffset,Dest,Len);
  /external/libvpx/vp8/common/x86/
boolcoder.cxx 198 bool_writer::bool_writer( c_spec& s, uchar *Dest, size_t Len)
200 Bstart( Dest),
201 Bend( Len? Dest+Len : 0),
202 B( Dest)
204 assert( Dest);
  /external/libvpx/vp8/encoder/ppc/
fdct_altivec.asm 73 vperm \Dst, v10, v10, v5 ;# Dest = A0 B0 A1 B1 A2 B2 A3 B3
95 .macro two_rows_h Dest
104 two_rows_horiz \Dest
  /external/zlib/contrib/delphi/
ZLib.pas 89 constructor Create(CompressionLevel: TCompressionLevel; Dest: TStream);
233 procedure _memcpy(dest, source: Pointer; count: Integer); cdecl;
235 Move(source^, dest^, count);
407 Dest: TStream);
412 inherited Create(Dest);
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/TNETW_Driver/TNETWIF/BusTxn/
whalHwAccess.c 84 * - handle case of dest(wlan hardware) address ends with 0x2 - read 32 from 0x0, set only high short
85 * - now the dest(wlan hardware) address is long address
96 * - copy buffer as stream of 16 bits (in case of dest address ends with 0x2)
280 static void whal_hwAccess_DirectCopy_new(HwAccess_T_new *pHwAccess, UINT8* Dest, UINT8* Src, UINT32 Len);
    [all...]
  /external/libvpx/vp8/encoder/
onyx_int.h 297 char *Dest;
671 void vp8_pack_bitstream(VP8_COMP *cpi, unsigned char *dest, unsigned long *size);
  /external/libvpx/vp8/common/ppc/
loopfilter_filters_altivec.asm 840 .macro hread_uv Dest, U, V, Offs, VMask
843 vperm \Dest, \U, \V, \VMask ;# Dest = active part of U then V
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary.ascend 83 ATTRIBUTE Ascend-First-Dest 189 ipaddr

Completed in 726 milliseconds