/external/valgrind/main/memcheck/tests/ |
overlap.vgtest | 1 prog: overlap
|
custom-overlap.vgtest | 1 prog: custom-overlap
|
overlap.stderr.exp | 1 Source and destination overlap in memcpy(0x........, 0x........, 21) 3 by 0x........: main (overlap.c:40) 5 Source and destination overlap in memcpy(0x........, 0x........, 21) 7 by 0x........: main (overlap.c:42) 9 Source and destination overlap in strncpy(0x........, 0x........, 21) 11 by 0x........: main (overlap.c:45) 13 Source and destination overlap in strncpy(0x........, 0x........, 21) 15 by 0x........: main (overlap.c:47) 17 Source and destination overlap in strcpy(0x........, 0x........) 19 by 0x........: main (overlap.c:54 [all...] |
overlap.c | 27 /* testing memcpy/strcpy overlap */ 40 memcpy(x+20, x, 21); // overlap 42 memcpy(x, x+20, 21); // overlap 45 strncpy(x+20, x, 21); // overlap 47 strncpy(x, x+20, 21); // overlap 54 strcpy(x, x+20); // overlap 62 strcpy(x+20, x); // overlap, but runs forever (or until it seg faults) 108 /* Nb: can't actually get strcat warning -- if any overlap occurs, it will
|
custom-overlap.c | 1 // Test for bug 100628: need to allow custom MALLOCLIKE blocks to overlap 20 // For this one, the first custom block does not overlap exactly with the
|
/external/clang/utils/valgrind/ |
x86_64-pc-linux-gnu_gcc-4.3.3.supp | 3 Memcheck:Overlap 11 Memcheck:Overlap 19 Memcheck:Overlap
|
/external/strace/ |
ioctl.c | 178 * M sundev/mcpcmd.h *overlap* 179 * M sys/modem.h *overlap* 181 * T sys/termio.h -no overlap- 182 * T sys/termios.h -no overlap- 185 * d sun/dkio.h -no overlap with sys/des.h- 186 * d sys/des.h (possible overlap) 187 * d vax/dkio.h (possible overlap) 188 * d vaxuba/rxreg.h (possible overlap) 190 * g sunwindow/win_ioctl.h -no overlap- 191 * g sunwindowdev/winioctl.c !no manifest constant! -no overlap [all...] |
/external/chromium_org/third_party/WebKit/ManualTests/frames/ |
nested-iframe-blit-on-scroll.html | 12 #overlap { 27 <div id="overlap"></div>
|
/external/llvm/test/CodeGen/ARM/ |
lsr-unfolded-offset.ll | 24 %overlap.081 = phi i32 [ %overlap.4, %for.inc69 ], [ 0, %entry ] 34 %overlap.178 = phi i32 [ %overlap.081, %outer.loop ], [ %overlap.4, %for.inc ] 48 %overlap.2 = select i1 %or.cond, i32 1, i32 %overlap.178 52 %overlap.3 = select i1 %or.cond74, i32 1, i32 %overlap.2 62 %overlap.4 = phi i32 [ %overlap.178, %inner.loop ], [ 1, %if.then66 ], [ %overlap.3, %if.end [all...] |
/external/chromium_org/third_party/icu/source/common/ |
unisetspan.cpp | 563 * with a partial overlap because the recursive algorithm would have tried 611 * with a partial overlap because the standard algorithm would have tried 614 * must be matched with a full overlap because the longest-match algorithm 639 // Consider strings; they may overlap with the span. 650 int32_t overlap=spanLengths[i]; local 651 if(overlap==ALL_CP_CONTAINED) { 658 // Try to match this string at pos-overlap..pos. 659 if(overlap>=LONG_SPAN) { 660 overlap=length16; 662 U16_BACK_1(s16, 0, overlap); // Length of the string minus the last code point 689 int32_t overlap=spanLengths[i]; local 814 int32_t overlap=spanBackLengths[i]; local 855 int32_t overlap=spanBackLengths[i]; local 982 int32_t overlap=spanUTF8Lengths[i]; local 1030 int32_t overlap=spanUTF8Lengths[i]; local 1162 int32_t overlap=spanBackUTF8Lengths[i]; local 1211 int32_t overlap=spanBackUTF8Lengths[i]; local [all...] |
/external/icu4c/common/ |
unisetspan.cpp | 565 * with a partial overlap because the recursive algorithm would have tried 613 * with a partial overlap because the standard algorithm would have tried 616 * must be matched with a full overlap because the longest-match algorithm 641 // Consider strings; they may overlap with the span. 652 int32_t overlap=spanLengths[i]; local 653 if(overlap==ALL_CP_CONTAINED) { 660 // Try to match this string at pos-overlap..pos. 661 if(overlap>=LONG_SPAN) { 662 overlap=length16; 664 U16_BACK_1(s16, 0, overlap); // Length of the string minus the last code point 691 int32_t overlap=spanLengths[i]; local 816 int32_t overlap=spanBackLengths[i]; local 857 int32_t overlap=spanBackLengths[i]; local 984 int32_t overlap=spanUTF8Lengths[i]; local 1032 int32_t overlap=spanUTF8Lengths[i]; local 1164 int32_t overlap=spanBackUTF8Lengths[i]; local 1213 int32_t overlap=spanBackUTF8Lengths[i]; local [all...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
ctrl_iface_named_pipe.c | 62 OVERLAPPED overlap; member in struct:wpa_ctrl_dst 90 LPOVERLAPPED overlap); 97 LPOVERLAPPED overlap); 147 dst->overlap.hEvent = CreateEvent(NULL, TRUE, TRUE, NULL); 148 if (dst->overlap.hEvent == NULL) { 154 eloop_register_event(dst->overlap.hEvent, 155 sizeof(dst->overlap.hEvent), 181 if (ConnectNamedPipe(dst->pipe, &dst->overlap)) { 198 if (SetEvent(dst->overlap.hEvent)) 226 if (dst->overlap.hEvent) 541 OVERLAPPED overlap; member in struct:wpa_global_dst [all...] |
/external/aac/libFDK/include/ |
mdct.h | 117 } overlap; /**< Pointer to overlap memory */ member in struct:__anon2559 123 int ov_offset; /**< overlap time data fill level */ 124 int ov_size; /**< Overlap buffer size in words */ 134 * \param overlap pointer to FIXP_DBL overlap buffer. 135 * \param overlapBufferSize size in FIXP_DBLs of the given overlap buffer. 139 FIXP_DBL *overlap, 151 * \param fr right overlap window slope length 152 * \param wrs pointer to the right side overlap window coefficients [all...] |
/dalvik/vm/mterp/armv5te/ |
OP_MOVE_WIDE_16.S | 3 /* NOTE: regs can overlap, e.g. "move v6,v7" or "move v7,v6" */
|
OP_MOVE_WIDE_FROM16.S | 3 /* NOTE: regs can overlap, e.g. "move v6,v7" or "move v7,v6" */
|
/dalvik/vm/mterp/armv6t2/ |
OP_MOVE_WIDE.S | 3 /* NOTE: regs can overlap, e.g. "move v6,v7" or "move v7,v6" */
|
/dalvik/vm/mterp/mips/ |
OP_MOVE_WIDE.S | 3 /* NOTE: regs can overlap, e.g. "move v6, v7" or "move v7, v6" */
|
OP_MOVE_WIDE_16.S | 3 /* NOTE: regs can overlap, e.g. "move v6, v7" or "move v7, v6" */
|
OP_MOVE_WIDE_FROM16.S | 3 /* NOTE: regs can overlap, e.g. "move v6, v7" or "move v7, v6" */
|
/dalvik/vm/mterp/x86/ |
OP_MOVE_WIDE.S | 3 /* NOTE: regs can overlap, e.g. "move v6,v7" or "move v7,v6" */
|
OP_MOVE_WIDE_16.S | 3 /* NOTE: regs can overlap, e.g. "move v6,v7" or "move v7,v6" */
|
OP_MOVE_WIDE_FROM16.S | 3 /* NOTE: regs can overlap, e.g. "move v6,v7" or "move v7,v6" */
|
/external/chromium_org/third_party/opus/src/celt/ |
mdct.c | 106 const opus_val16 *window, int overlap, int shift, int stride) 129 const kiss_fft_scalar * OPUS_RESTRICT xp1 = in+(overlap>>1); 130 const kiss_fft_scalar * OPUS_RESTRICT xp2 = in+N2-1+(overlap>>1); 132 const opus_val16 * OPUS_RESTRICT wp1 = window+(overlap>>1); 133 const opus_val16 * OPUS_RESTRICT wp2 = window+(overlap>>1)-1; 134 for(i=0;i<(overlap>>2);i++) 145 wp2 = window+overlap-1; 146 for(;i<N4-(overlap>>2);i++) 210 const opus_val16 * OPUS_RESTRICT window, int overlap, int shift, int stride) 285 out -= (N2-overlap)>>1 [all...] |
modes.h | 42 #ifndef OVERLAP 43 #define OVERLAP(mode) ((mode)->overlap) 62 int overlap; member in struct:OpusCustomMode
|
/external/iproute2/etc/iproute2/ |
rt_dsfield | 5 # This value overlap with ECT, do not use it!
|