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

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/
libprep.bat 8 set dest=%1 variable
10 echo Copying files to %dest%.
16 XCOPY Lib %dest% /S /I /Y
17 XCOPY PyMod-2.7.10\Lib %dest% /S /I /Y
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/z8k/
calr-backf.s 2 dest: nop label
5 calr dest
calr-forwf.s 2 calr dest
5 dest: nop label
jr-forw.s 2 jr t,dest ! max. displacement
3 jr t,dest
4 jr t,dest
6 .globl dest
7 dest: nop label
jr-backf.s 5 .globl dest
6 dest: jr t,start label
jr-forwf.s 2 start: jr t,dest
4 .globl dest
5 dest: nop label
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/z80/
jr-backf.s 5 .globl dest
6 dest: jr z,start label
jr-forwf.s 2 start: jr c,dest
4 .globl dest
5 dest: nop label
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
jump-reloc-veneers-cond.s 7 bne dest
11 dest: label
12 bl dest
jump-reloc-veneers.s 7 b.w dest
11 dest: label
12 b.n dest
  /external/clang/test/Analysis/
cstring-syntax.c 8 char dest[10]; local
9 strncat(dest, "AAAAAAAAAAAAAAAAAAAAAAAAAAAAA", sizeof(dest) - 1); // expected-warning {{Potential buffer overflow. Replace with 'sizeof(dest) - strlen(dest) - 1' or use a safer 'strlcat' API}}
10 strncat(dest, "AAAAAAAAAAAAAAAAAAAAAAAAAAA", sizeof(dest)); // expected-warning {{Potential buffer overflow. Replace with}}
11 strncat(dest, "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", sizeof(dest) - strlen(dest)); // expected-warning {{Potential buffer overflow. Replace with}
    [all...]
  /external/libchrome/base/
bit_cast.h 14 // bit_cast<Dest,Source> is a template function that implements the equivalent
15 // of "*reinterpret_cast<Dest*>(&source)". We need this in very low-level
62 template <class Dest, class Source>
63 inline Dest bit_cast(const Source& source) {
64 static_assert(sizeof(Dest) == sizeof(Source),
73 static_assert(std::is_trivially_copyable<Dest>::value,
79 static_assert(__is_trivially_copyable(Dest),
87 static_assert(__has_trivial_copy(Dest),
95 Dest dest; local
    [all...]
  /external/libtextclassifier/util/base/
casts.h 24 // lang_id_bit_cast<Dest,Source> is a template function that implements the
25 // equivalent of "*reinterpret_cast<Dest*>(&source)". We need this in
75 // WARNING: if Dest or Source is a non-POD type, the result of the memcpy
83 template <class Dest, class Source>
84 inline Dest bit_cast(const Source &source) {
85 static_assert(sizeof(Dest) == sizeof(Source), "Sizes do not match");
87 Dest dest; local
88 memcpy(&dest, &source, sizeof(dest));
    [all...]
  /external/libxml2/python/tests/
cutnpaste.py 24 dest = target.getRootElement() variable
28 dest.addChild(fragment)
30 dest.reconciliateNs(target)
36 str = dest.serialize()
  /external/webrtc/webrtc/base/
urlencode_unittest.cc 22 char dest[1]; local
23 ASSERT_EQ(0, UrlEncode(source, dest, arraysize(dest)));
24 ASSERT_EQ('\0', dest[0]);
26 dest[0] = 'a';
27 ASSERT_EQ(0, UrlEncode(source, dest, 0));
28 ASSERT_EQ('a', dest[0]);
33 char dest[4]; local
34 ASSERT_EQ(3, UrlEncode(source, dest, arraysize(dest)));
43 char dest[3]; local
52 char dest[3]; local
59 char dest[8]; local
66 char dest[8]; local
74 char dest[8]; local
81 char dest[8]; local
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/transient/
file_utils.h 23 template <class Dest, class Source>
24 inline Dest bit_cast(const Source& source) {
25 // A compile error here means your Dest and Source have different sizes.
26 static_assert(sizeof(Dest) == sizeof(Source),
27 "Dest and Source have different sizes");
29 Dest dest; local
30 memcpy(&dest, &source, sizeof(dest));
31 return dest;
    [all...]
  /external/elfutils/libasm/
asm_adduleb128.c 57 char *dest = tmpbuf; local
69 *dest++ = byte | 0x80;
72 *dest++ = byte;
75 size_t nbytes = dest - tmpbuf;
asm_addsleb128.c 57 char *dest = tmpbuf; local
73 *dest++ = byte | 0x80;
76 *dest++ = byte;
79 size_t nbytes = dest - tmpbuf;
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/util/
bitutils.h 35 // Performs a bitwise copy of source to the destination type Dest.
36 template <typename Dest, typename Src>
37 Dest BitwiseCast(Src source) {
38 Dest dest; local
39 static_assert(sizeof(source) == sizeof(dest),
41 std::memcpy(&dest, &source, sizeof(dest));
42 return dest;
  /development/ndk/platforms/android-9/include/linux/netfilter_ipv4/
ipt_addrtype.h 17 u_int16_t dest; member in struct:ipt_addrtype_info
  /external/clang/test/CodeGen/
le32-vaarg.c 17 struct Foo dest; variable in typeref:struct:Foo
20 dest = va_arg(*args, struct Foo);
26 // CHECK: call void @llvm.memcpy{{.*}}@dest{{.*}}, i8* [[LOC2]]
  /external/compiler-rt/lib/dfsan/scripts/
build-libc-list.py 52 dest='with_libstdcxx', variable
  /external/lzma/C/
Bra.c 19 UInt32 dest; local
23 dest = ip + (UInt32)i + src;
25 dest = src - (ip + (UInt32)i);
26 dest >>= 2;
27 data[i + 2] = (Byte)(dest >> 16);
28 data[i + 1] = (Byte)(dest >> 8);
29 data[i + 0] = (Byte)dest;
47 UInt32 dest; local
56 dest = ip + (UInt32)i + src;
58 dest = src - (ip + (UInt32)i);
86 UInt32 dest; local
117 UInt32 dest; local
    [all...]
  /external/syslinux/gpxe/src/include/gpxe/
interface.h 24 struct interface *dest; member in struct:interface
55 extern void plug ( struct interface *intf, struct interface *dest );
  /external/vboot_reference/tests/
utility_string_tests.c 20 char dest[128]; local
23 TEST_EQ(0, StrnAppend(dest, NULL, sizeof(dest)), "StrnAppend('', null)");
24 TEST_EQ(0, StrnAppend(NULL, "Hey!", sizeof(dest)), "StrnAppend(null, '')");
27 *dest = 0;
28 TEST_EQ(0, StrnAppend(dest, "", sizeof(dest)), "StrnAppend('', '')");
29 TEST_EQ(0, strcmp(dest, ""), "StrnAppend('', '') result");
32 strcpy(dest, "Bob");
33 TEST_EQ(3, StrnAppend(dest, "", sizeof(dest)), "StrnAppend(B, '')")
60 char dest[UINT64_TO_STRING_MAX]; local
72 char dest[UINT64_TO_STRING_MAX]; local
    [all...]

Completed in 531 milliseconds

1 2 3 4 5 6 7 8 91011>>