Searched refs:buf64 (Results 1 - 9 of 9) sorted by relevance

/external/valgrind/coregrind/m_aspacemgr/
H A Daspacemgr-common.c331 struct vki_stat64 buf64; local
332 res = VG_(do_syscall2)(__NR_fstat64, fd, (UWord)&buf64);
334 *dev = (ULong)buf64.st_dev;
335 *ino = (ULong)buf64.st_ino;
336 *mode = (UInt) buf64.st_mode;
350 struct vki_stat64 buf64;
351 SysRes res = VG_(do_syscall4)(__NR_fstatat64, fd, 0, (UWord)&buf64, 0);
353 struct vki_stat buf64;
354 SysRes res = VG_(do_syscall4)(__NR_fstatat, fd, 0, (UWord)&buf64, 0);
359 *dev = (ULong)buf64
[all...]
/external/curl/tests/server/
H A Dgetpart.c194 unsigned char *buf64 = NULL; local
201 error = (int) Curl_base64_decode(*buf, &buf64, &src_len);
212 free(buf64);
218 memcpy(*buf, buf64, src_len);
222 free(buf64);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux.cc230 struct stat64 buf64;
231 int res = internal_syscall(SYSCALL(stat64), path, &buf64);
232 stat64_to_stat(&buf64, (struct stat *)buf);
246 struct stat64 buf64;
247 int res = internal_syscall(SYSCALL(lstat64), path, &buf64);
248 stat64_to_stat(&buf64, (struct stat *)buf);
257 struct stat64 buf64;
258 int res = internal_syscall(SYSCALL(fstat64), fd, &buf64);
259 stat64_to_stat(&buf64, (struct stat *)buf);
/external/valgrind/coregrind/
H A Dm_libcfile.c351 { struct vki_stat64 buf64; local
352 res = VG_(do_syscall2)(__NR_stat64, (UWord)file_name, (UWord)&buf64);
356 TRANSLATE_TO_vg_stat(vgbuf, &buf64);
376 struct vki_stat64 buf64; local
378 (UWord)&buf64, 0);
380 struct vki_stat buf64; local
382 (UWord)&buf64, 0);
387 TRANSLATE_TO_vg_stat(vgbuf, &buf64);
404 { struct vki_stat64 buf64; local
405 res = VG_(do_syscall2)(__NR_fstat64, (UWord)fd, (UWord)&buf64);
423 struct vki_stat64 buf64; local
426 struct vki_stat buf64; local
[all...]
/external/opencv3/modules/imgproc/src/
H A Dmoments.cpp378 _mm_store_si128((__m128i*)buf64, v_x3);
379 x3 = buf64[0] + buf64[1];
386 int64 CV_DECL_ALIGNED(16) buf64[2]; member in struct:cv::MomentsInTile_SIMD
/external/valgrind/coregrind/m_scheduler/
H A Dscheduler.c2025 HChar* buf64 = (HChar*)arg[2]; // points to a HChar [64] array local
2028 VG_(memset)(buf64, 0, 64);
2036 VG_(strncpy)(buf64, buf, 50);
2037 buf64[49] = '\0';
2040 if (buf64[i] == 0)
2043 VG_(sprintf)(buf64+i, ":%u", linenum); // safe
2045 buf64[0] = 0;
/external/v8/src/third_party/valgrind/
H A Dvalgrind.h4013 /* Map a code address to a source file name and line number. buf64
4017 #define VALGRIND_MAP_IP_TO_SRCLOC(addr, buf64) \
4020 addr, buf64, 0, 0, 0)
/external/valgrind/include/
H A Dvalgrind.h7072 /* Map a code address to a source file name and line number. buf64
7076 #define VALGRIND_MAP_IP_TO_SRCLOC(addr, buf64) \
7079 addr, buf64, 0, 0, 0)
/external/valgrind/coregrind/m_syswrap/
H A Dsyswrap-solaris.c2655 struct vki_shmid_ds64 *buf64 = (struct vki_shmid_ds64 *) ARG4; local
2658 buf64->shmx_perm.ipcx_uid);
2661 buf64->shmx_perm.ipcx_gid);
2664 buf64->shmx_perm.ipcx_mode);

Completed in 371 milliseconds