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

<<11121314151617181920>>

  /external/webp/src/enc/
picture_rescale_enc.c 14 #include "src/webp/encode.h"
21 #include "src/enc/vp8i_enc.h"
22 #include "src/utils/rescaler_utils.h"
23 #include "src/utils/utils.h"
27 // Grab the 'specs' (writer, *opaque, width, height...) from 'src' and copy them
29 static void PictureGrabSpecs(const WebPPicture* const src,
31 assert(src != NULL && dst != NULL);
32 *dst = *src;
59 int WebPPictureCopy(const WebPPicture* src, WebPPicture* dst) {
60 if (src == NULL || dst == NULL) return 0
154 const uint8_t* const src = local
    [all...]
  /external/valgrind/none/tests/s390x/
cu12.stdout.exp 8 src address difference: 6 src len: 0
15 src address difference: 0 src len: 1
20 src address difference: 0 src len: 1
25 src address difference: 0 src len: 1
30 src address difference: 0 src len:
    [all...]
cu12_1.stdout.exp 8 src address difference: 6 src len: 0
15 src address difference: 0 src len: 1
20 src address difference: 0 src len: 1
25 src address difference: 0 src len: 1
30 src address difference: 0 src len:
    [all...]
cu14.stdout.exp 8 src address difference: 6 src len: 0
15 src address difference: 0 src len: 1
20 src address difference: 0 src len: 1
25 src address difference: 0 src len: 1
30 src address difference: 0 src len:
    [all...]
cu14_1.stdout.exp 8 src address difference: 6 src len: 0
15 src address difference: 0 src len: 1
20 src address difference: 0 src len: 1
25 src address difference: 0 src len: 1
30 src address difference: 0 src len:
    [all...]
  /external/libcups/cups/
transcode.c 76 const char *src, /* I - Source string */
91 DEBUG_printf(("2cupsCharsetToUTF8(dest=%p, src=\"%s\", maxout=%d, encoding=%d)", (void *)dest, src, maxout, encoding));
93 if (!dest || !src || maxout < 1)
109 strlcpy((char *)dest, src, (size_t)maxout);
127 while (*src && destptr < destend)
129 ch = *src++ & 255;
169 srclen = strlen(src);
172 iconv(map_to_utf8, (char **)&src, &srclen, &altdestptr, &outBytesLeft);
200 const cups_utf8_t *src, /* I - Source string *
    [all...]
  /external/wpa_supplicant_8/hs20/client/
Android.mk 4 INCLUDES += $(LOCAL_PATH)/../../src/utils
5 INCLUDES += $(LOCAL_PATH)/../../src/common
6 INCLUDES += $(LOCAL_PATH)/../../src
37 OBJS += ../../src/common/wpa_ctrl.c
38 OBJS += ../../src/common/wpa_helpers.c
39 OBJS += ../../src/utils/xml-utils.c
40 #OBJS += ../../src/utils/browser-android.c
41 OBJS += ../../src/utils/browser-wpadebug.c
42 OBJS += ../../src/utils/wpabuf.c
43 OBJS += ../../src/utils/eloop.
    [all...]
  /art/compiler/utils/x86/
assembler_x86.h 330 void movl(Register dst, const Immediate& src);
331 void movl(Register dst, Register src);
333 void movl(Register dst, const Address& src);
334 void movl(const Address& dst, Register src);
338 void movntl(const Address& dst, Register src);
342 void bsfl(Register dst, Register src);
343 void bsfl(Register dst, const Address& src);
344 void bsrl(Register dst, Register src);
345 void bsrl(Register dst, const Address& src);
347 void popcntl(Register dst, Register src);
    [all...]
  /external/mesa3d/src/mesa/main/
format_utils.h 162 _mesa_unsigned_to_unsigned(unsigned src, unsigned dst_size)
164 return MIN2(src, MAX_UINT(dst_size));
168 _mesa_unsigned_to_signed(unsigned src, unsigned dst_size)
170 return MIN2(src, (unsigned)MAX_INT(dst_size));
174 _mesa_signed_to_signed(int src, unsigned dst_size)
176 return CLAMP(src, MIN_INT(dst_size), MAX_INT(dst_size));
180 _mesa_signed_to_unsigned(int src, unsigned dst_size)
182 return CLAMP(src, 0, MAX_UINT(dst_size));
186 _mesa_float_to_unsigned(float src, unsigned dst_bits)
188 if (src < 0.0f
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
Core_MixSoft_1St_D32C31_WRA.c 30 const LVM_FLOAT *src,
58 Temp1 = *src;
59 src++;
72 Temp1 = *src;
73 src++;
79 Temp1 = *src;
80 src++;
86 Temp1 = *src;
87 src++;
93 Temp1 = *src;
    [all...]
LVC_Core_MixSoft_1St_D16C31_WRA.c 31 const LVM_FLOAT *src,
61 *(dst++) = (((LVM_FLOAT)*(src++) * (LVM_FLOAT)Current));
78 *(dst++) = (((LVM_FLOAT)*(src++) * Current) );
79 *(dst++) = (((LVM_FLOAT)*(src++) * Current) );
80 *(dst++) = (((LVM_FLOAT)*(src++) * Current) );
81 *(dst++) = (((LVM_FLOAT)*(src++) * Current) );
91 *(dst++) = (((LVM_FLOAT)*(src++) * Current));
100 *(dst++) = (((LVM_FLOAT)*(src++) * Current));
101 *(dst++) = (((LVM_FLOAT)*(src++) * Current));
102 *(dst++) = (((LVM_FLOAT)*(src++) * Current))
    [all...]
  /frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
VrState.java 41 public void clone(VrState src) {
42 mRs = src.mRs;
43 mVolume = src.mVolume;
44 mRsMask = src.mRsMask;
45 mMaterial = src.mMaterial;
49 mCubeVolume.clone(src.mCubeVolume);
50 mCubeScreen = new TriData(src.mCubeScreen);
51 mImgWidth = src.mImgWidth;
52 mImgHeight = src.mImgHeight;
53 mzRangeFullAllocation = src.mzRangeFullAllocation;
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_lower_double_ops.c 41 set_exponent(nir_builder *b, nir_ssa_def *src, nir_ssa_def *exp)
44 nir_ssa_def *lo = nir_unpack_double_2x32_split_x(b, src);
45 nir_ssa_def *hi = nir_unpack_double_2x32_split_y(b, src);
56 get_exponent(nir_builder *b, nir_ssa_def *src)
59 nir_ssa_def *hi = nir_unpack_double_2x32_split_y(b, src);
89 fix_inv_result(nir_builder *b, nir_ssa_def *res, nir_ssa_def *src,
98 nir_feq(b, nir_fabs(b, src),
103 res = nir_bcsel(b, nir_fne(b, src, nir_imm_double(b, 0.0f)),
104 res, get_signed_inf(b, src));
111 lower_rcp(nir_builder *b, nir_ssa_def *src)
520 nir_ssa_def *src = nir_fmov_alu(&bld, instr->src[0], local
    [all...]
nir_search_helpers.h 39 is_pos_power_of_two(nir_alu_instr *instr, unsigned src, unsigned num_components,
42 nir_const_value *val = nir_src_as_const_value(instr->src[src].src);
44 /* only constant src's: */
49 switch (nir_op_infos[instr->op].input_types[src]) {
69 is_neg_power_of_two(nir_alu_instr *instr, unsigned src, unsigned num_components,
72 nir_const_value *val = nir_src_as_const_value(instr->src[src].src);
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/common/
InputPointersTests.java 29 final InputPointers src = new InputPointers(DEFAULT_CAPACITY); local
30 assertEquals("new instance size", 0, src.getPointerSize());
31 assertNotNull("new instance xCoordinates", src.getXCoordinates());
32 assertNotNull("new instance yCoordinates", src.getYCoordinates());
33 assertNotNull("new instance pointerIds", src.getPointerIds());
34 assertNotNull("new instance times", src.getTimes());
38 final InputPointers src = new InputPointers(DEFAULT_CAPACITY); local
39 final int[] xCoordinates = src.getXCoordinates();
40 final int[] yCoordinates = src.getXCoordinates();
41 final int[] pointerIds = src.getXCoordinates()
53 final InputPointers src = new InputPointers(DEFAULT_CAPACITY); local
76 final InputPointers src = new InputPointers(DEFAULT_CAPACITY); local
99 final InputPointers src = new InputPointers(DEFAULT_CAPACITY); local
118 final InputPointers src = new InputPointers(DEFAULT_CAPACITY); local
300 final InputPointers src = new InputPointers(DEFAULT_CAPACITY); local
    [all...]
  /external/libvpx/libvpx/vpx_dsp/arm/
highbd_vpx_convolve_avg_neon.c 16 void vpx_highbd_convolve_avg_neon(const uint16_t *src, ptrdiff_t src_stride,
32 s0 = vld1_u16(src);
34 src += src_stride;
35 s1 = vld1_u16(src);
37 src += src_stride;
50 s0 = vld1q_u16(src);
52 src += src_stride;
53 s1 = vld1q_u16(src);
55 src += src_stride;
69 s0l = vld1q_u16(src);
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_nir_opt_peephole_ffma.c 71 get_mul_for_src(nir_alu_src *src, int num_components,
75 assert(src->src.is_ssa && !src->abs && !src->negate);
77 nir_instr *instr = src->src.ssa->parent_instr;
96 alu = get_mul_for_src(&alu->src[0], num_components, swizzle, negate, abs);
100 alu = get_mul_for_src(&alu->src[0], num_components, swizzle, negate, abs);
105 alu = get_mul_for_src(&alu->src[0], num_components, swizzle, negate, abs)
    [all...]
brw_eu_util.c 40 struct brw_reg src)
46 src,
54 struct brw_reg src,
60 src = vec4(src);
65 brw_MOV(p, byte_offset(dst, delta), byte_offset(src, delta));
66 brw_MOV(p, byte_offset(dst, delta+16), byte_offset(src, delta+16));
73 struct brw_reg src,
79 src = vec8(src);
    [all...]
  /external/swiftshader/src/Reactor/
Android.mk 30 $(SUBZERO_PATH)/src/IceAssembler.cpp \
31 $(SUBZERO_PATH)/src/IceCfg.cpp \
32 $(SUBZERO_PATH)/src/IceCfgNode.cpp \
33 $(SUBZERO_PATH)/src/IceClFlags.cpp \
34 $(SUBZERO_PATH)/src/IceELFObjectWriter.cpp \
35 $(SUBZERO_PATH)/src/IceELFSection.cpp \
36 $(SUBZERO_PATH)/src/IceFixups.cpp \
37 $(SUBZERO_PATH)/src/IceGlobalContext.cpp \
38 $(SUBZERO_PATH)/src/IceGlobalInits.cpp \
39 $(SUBZERO_PATH)/src/IceInst.cpp
    [all...]
  /external/libchrome/base/strings/
utf_string_conversion_utils.cc 13 bool ReadUnicodeCharacter(const char* src,
21 CBU8_NEXT(src, *char_index, src_len, code_point);
32 bool ReadUnicodeCharacter(const char16* src,
36 if (CBU16_IS_SURROGATE(src[*char_index])) {
37 if (!CBU16_IS_SURROGATE_LEAD(src[*char_index]) ||
39 !CBU16_IS_TRAIL(src[*char_index + 1])) {
45 *code_point = CBU16_GET_SUPPLEMENTARY(src[*char_index],
46 src[*char_index + 1]);
50 *code_point = src[*char_index];
57 bool ReadUnicodeCharacter(const wchar_t* src,
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_yuv.c 50 const uint32_t *src = (const uint32_t *)src_row; local
55 value = util_cpu_to_le32(*src++);
76 value = util_cpu_to_le32(*src);
104 const uint32_t *src = (const uint32_t *)src_row; local
109 value = util_cpu_to_le32(*src++);
130 value = util_cpu_to_le32(*src);
157 const float *src = src_row; local
163 r = 0.5f*(src[0] + src[4]);
164 g0 = src[1]
206 const uint8_t *src = src_row; local
270 const uint32_t *src = (const uint32_t *)src_row; local
324 const uint32_t *src = (const uint32_t *)src_row; local
377 const float *src = src_row; local
426 const uint8_t *src = src_row; local
490 const uint32_t *src = (const uint32_t *)src_row; local
538 const uint32_t *src = (const uint32_t *)src_row; local
585 const float *src = src_row; local
638 const uint8_t *src = src_row; local
711 const uint32_t *src = (const uint32_t *)src_row; local
759 const uint32_t *src = (const uint32_t *)src_row; local
806 const float *src = src_row; local
859 const uint8_t *src = src_row; local
    [all...]
  /external/selinux/python/sepolicy/sepolicy/
network.py 26 def get_types(src, tclass, perm, check_bools=False):
27 allows = sepolicy.search([sepolicy.ALLOW], {sepolicy.SOURCE: src, sepolicy.CLASS: tclass, sepolicy.PERMS: perm})
36 def get_network_connect(src, protocol, perm, check_bools=False):
39 tlist = get_types(src, "%s_socket" % protocol, [perm], check_bools)
41 d[(src, protocol, perm)] = []
53 d[(src, protocol, perm)].append((i, ["all ports with out defined types"]))
55 d[(src, protocol, perm)].append((i, ["all ports"]))
57 d[(src, protocol, perm)].append((i, ["all ports > 1024"]))
59 d[(src, protocol, perm)].append((i, ["all ports < 1024"]))
61 d[(src, protocol, perm)].append((i, ["all ports > 500 and < 1024"])
    [all...]
  /frameworks/base/libs/androidfw/include/androidfw/
AssetDir.h 69 AssetDir(const AssetDir& src);
70 const AssetDir& operator=(const AssetDir& src);
85 FileInfo(const FileInfo& src) {
86 copyMembers(src);
88 const FileInfo& operator= (const FileInfo& src) {
89 if (this != &src)
90 copyMembers(src);
94 void copyMembers(const FileInfo& src) {
95 mFileName = src.mFileName;
96 mFileType = src.mFileType
    [all...]
  /system/core/libutils/include/utils/
Unicode.h 54 ssize_t utf32_to_utf8_length(const char32_t *src, size_t src_len);
57 * Stores a UTF-8 string converted from "src" in "dst", if "dst_length" is not
58 * large enough to store the string, the part of the "src" string is stored
65 * "src" == \u3042\u3044 (\xE3\x81\x82\xE3\x81\x84)
74 * "src" == \u3042\u3044 (\xE3\x81\x82\xE3\x81\x84)
84 * "src" == \u3042\u3044 (\xE3\x81\x82\xE3\x81\x84)
93 void utf32_to_utf8(const char32_t* src, size_t src_len, char* dst, size_t dst_len);
102 int32_t utf32_from_utf8_at(const char *src, size_t src_len, size_t index, size_t *next_index);
106 * Returns the UTF-8 length of UTF-16 string "src".
108 ssize_t utf16_to_utf8_length(const char16_t *src, size_t src_len)
    [all...]
  /frameworks/base/cmds/statsd/
Android.mk 20 src/statsd_config.proto \
21 src/FieldValue.cpp \
22 src/hash.cpp \
23 src/stats_log_util.cpp \
24 src/anomaly/AlarmMonitor.cpp \
25 src/anomaly/AlarmTracker.cpp \
26 src/anomaly/AnomalyTracker.cpp \
27 src/anomaly/DurationAnomalyTracker.cpp \
28 src/anomaly/subscriber_util.cpp \
29 src/condition/CombinationConditionTracker.cpp
    [all...]

Completed in 468 milliseconds

<<11121314151617181920>>