HomeSort by relevance Sort by last modified time
    Searched refs:src (Results 176 - 200 of 12122) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/ndk/r16/sources/third_party/vulkan/src/build-android/generated/include/
vk_safe_struct.cpp 45 safe_VkApplicationInfo::safe_VkApplicationInfo(const safe_VkApplicationInfo& src)
47 sType = src.sType;
48 pNext = src.pNext;
49 pApplicationName = src.pApplicationName;
50 applicationVersion = src.applicationVersion;
51 pEngineName = src.pEngineName;
52 engineVersion = src.engineVersion;
53 apiVersion = src.apiVersion;
71 void safe_VkApplicationInfo::initialize(const safe_VkApplicationInfo* src)
73 sType = src->sType
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_opt_copy_propagate.c 46 if (instr->src[0].abs || instr->src[0].negate)
49 if (!instr->src[0].src.is_ssa)
59 if (!instr->src[i].src.is_ssa)
63 if (instr->src[i].abs || instr->src[i].negate)
79 if (instr->src[0].swizzle[i] != i)
86 if (instr->src[i].swizzle[0] != i
145 nir_alu_src *src = &parent_alu_instr->src[index]; local
    [all...]
nir_constant_expressions.h 31 unsigned bit_size, nir_const_value *src);
  /art/libartbase/base/
strlcpy.h 31 static inline size_t strlcpy(char* dst, const char* src, size_t size) {
33 return snprintf(dst, size, "%s", src);
  /art/test/646-checker-arraycopy-large-cst-pos/src/
Main.java 29 Object[] src = new Object[1024]; local
34 System.arraycopy(src, 0, dst, 1024, 64);
  /art/test/701-easy-div-rem/
build 21 mkdir src
  /art/test/968-default-partial-compile-gen/
build 25 mkdir -p src
30 # After this the src directory will contain the final versions of all files.
31 ./util-src/generate_java.py ./javac_exec.sh ./src ./classes ./expected.txt ./build_log
35 ./util-src/generate_smali.py ./smali ./expected.txt
  /art/test/971-iface-super/
build 25 mkdir -p src
30 # After this the src directory will contain the final versions of all files.
31 ./util-src/generate_java.py ./javac_exec.sh ./src ./classes ./expected.txt ./build_log
35 ./util-src/generate_smali.py ./smali ./expected.txt
  /bionic/libc/bionic/
wmempcpy.cpp 31 wchar_t* wmempcpy(wchar_t* dst, const wchar_t* src, size_t n) {
32 return wmemcpy(dst, src, n) + n;
  /bionic/libc/upstream-openbsd/lib/libc/string/
strncpy.c 38 * Copy src to dst, truncating or null-padding to always copy n bytes.
42 strncpy(char *dst, const char *src, size_t n)
46 const char *s = src;
  /device/google/contexthub/firmware/lib/libc/
strncpy.c 38 * Copy src to dst, truncating or null-padding to always copy n bytes.
42 strncpy(char *dst, const char *src, size_t n)
46 const char *s = src;
  /external/e2fsprogs/lib/uuid/
copy.c 38 void uuid_copy(uuid_t dst, const uuid_t src)
44 for (i=0, cp1 = dst, cp2 = src; i < 16; i++)
  /external/elfutils/tests/
run-elflint-self.sh 21 testrun_on_self ${abs_top_builddir}/src/elflint --quiet --gnu-ld
run-readelf-self.sh 21 testrun_on_self_quiet ${abs_top_builddir}/src/readelf -a -w
  /external/javassist/src/main/javassist/scopedpool/
ScopedClassPoolFactory.java 30 ScopedClassPool create(ClassLoader cl, ClassPool src,
36 ScopedClassPool create(ClassPool src,
  /external/libvpx/libvpx/vp9/common/
vp9_common.h 29 #define vp9_copy(dest, src) \
31 assert(sizeof(dest) == sizeof(src)); \
32 memcpy(dest, src, sizeof(src)); \
36 #define vp9_copy_array(dest, src, n) \
38 assert(sizeof(*dest) == sizeof(*src)); \
39 memcpy(dest, src, n * sizeof(*src)); \
  /external/libvpx/libvpx/vp9/encoder/
vp9_extend.h 21 void vp9_copy_and_extend_frame(const YV12_BUFFER_CONFIG *src,
24 void vp9_copy_and_extend_frame_with_rect(const YV12_BUFFER_CONFIG *src,
  /external/skia/gn/
cp.py 12 src, dst = sys.argv[1:]
20 if os.path.isdir(src):
21 shutil.copytree(src, dst)
23 shutil.copy2(src, dst)
  /external/skqp/gn/
cp.py 12 src, dst = sys.argv[1:]
20 if os.path.isdir(src):
21 shutil.copytree(src, dst)
23 shutil.copy2(src, dst)
  /external/syslinux/com32/lib/
stpcpy.c 9 char *stpcpy(char *dst, const char *src)
12 const char *p = src;
stpncpy.c 9 char *stpncpy(char *dst, const char *src, size_t n)
12 const char *p = src;
strcpy.c 9 char *strcpy(char *dst, const char *src)
12 const char *p = src;
strncpy.c 9 char *strncpy(char *dst, const char *src, size_t n)
12 const char *p = src;
  /external/tensorflow/tensorflow/core/framework/
bfloat16.h 57 void FloatToBFloat16(const float* src, bfloat16* dst, int64 size);
58 void BFloat16ToFloat(const bfloat16* src, float* dst, int64 size);
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
Base64.java 77 * @param src the source string.
80 public static final byte[] encode(byte[] src)
82 return encode(src, 0);
89 * @param src the source string.
94 public static final byte[] encode(byte[] src, int lineFeed)
104 int codeLength = ((src.length + 2) / 3) * 4;
119 while (sidx + 3 <= src.length)
121 bits24 = (src[sidx++] & 0xFF) << 16;
122 bits24 |= (src[sidx++] & 0xFF) << 8;
123 bits24 |= (src[sidx++] & 0xFF) << 0
    [all...]

Completed in 1227 milliseconds

1 2 3 4 5 6 78 91011>>