HomeSort by relevance Sort by last modified time
    Searched defs:dest (Results 1 - 25 of 2552) 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.27/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.27/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.27/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
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-avr/
avr-prop-1.s 2 .global _start, dest
4 CALL dest
6 dest: label
avr-prop-3.s 2 .global _start, dest
4 CALL dest
5 CALL dest
7 dest: label
avr-prop-4.s 2 .global _start, dest
4 CALL dest
5 CALL dest
7 dest: label
avr-prop-5.s 2 .global _start, dest
4 CALL dest
6 dest: label
avr-prop-6.s 2 .global _start, dest
4 jmp dest
6 dest: label
8 rjmp dest
avr-prop-2.s 2 .global _start, label1, label2, dest
4 CALL dest
7 CALL dest
10 CALL dest
12 dest: label
  /device/google/cuttlefish_common/host/commands/launch/
screen_region_handler.cc 31 auto dest = region->data(); local
32 dest->x_res = config->x_res();
33 dest->y_res = config->y_res();
34 dest->dpi = config->dpi();
35 dest->refresh_rate_hz = config->refresh_rate_hz();
  /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 15 // bit_cast<Dest,Source> is a template function that implements the equivalent
16 // of "*reinterpret_cast<Dest*>(&source)". We need this in very low-level
63 template <class Dest, class Source>
64 inline Dest bit_cast(const Source& source) {
65 static_assert(sizeof(Dest) == sizeof(Source),
67 static_assert(base::is_trivially_copyable<Dest>::value,
72 Dest dest; local
73 memcpy(&dest, &source, sizeof(dest));
    [all...]
  /external/libtextclassifier/util/base/
casts.h 24 // bit_cast<Dest, Source> is a template function that implements the equivalent
25 // of "*reinterpret_cast<Dest*>(&source)". We need this in very low-level
75 // WARNING: if Dest or Source is a non-POD type, the result of the memcpy
81 template <class Dest, class Source>
82 inline Dest bit_cast(const Source &source) {
83 static_assert(sizeof(Dest) == sizeof(Source), "Sizes do not match");
85 Dest dest; local
86 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/tensorflow/tensorflow/core/lib/core/
casts.h 30 // bit_cast<Dest,Source> is a template function that implements the
31 // equivalent of "*reinterpret_cast<Dest*>(&source)". We need this in
81 // WARNING: if Dest or Source is a non-POD type, the result of the memcpy
89 template <class Dest, class Source>
90 inline Dest bit_cast(const Source& source) {
91 static_assert(sizeof(Dest) == sizeof(Source), "Sizes do not match");
93 Dest dest; local
94 memcpy(&dest, &source, sizeof(dest));
    [all...]
  /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;

Completed in 519 milliseconds

1 2 3 4 5 6 7 8 91011>>