Home
last modified time | relevance | path

Searched refs:src (Results 3276 - 3300 of 7043) sorted by relevance

1...<<131132133134135136137138139140>>...282

/third_party/ltp/tools/sparse/sparse-src/
H A Dcse.c101 hash += hashval(insn->src); in cse_collect()
246 if (i1->src != i2->src) in insn_compare()
247 return i1->src < i2->src ? -1 : 1; in insn_compare()
249 // Note: if it can be guaranted that identical ->src in insn_compare()
H A Dptrlist.c441 // @src: the head of the source list.
442 void copy_ptr_list(struct ptr_list **listp, struct ptr_list *src) in copy_ptr_list() argument
445 struct ptr_list *cur = src; in copy_ptr_list()
448 if (!src) in copy_ptr_list()
452 *listp = src; in copy_ptr_list()
480 } while (cur != src); in copy_ptr_list()
H A Dstorage.c198 static struct storage * combine_storage(struct storage *src, struct storage *dst) in combine_storage() argument
203 FOR_EACH_PTR(src->users, usep) { in combine_storage()
204 assert(*usep == src); in combine_storage()
210 src->type = REG_BAD; in combine_storage()
211 src->users = NULL; in combine_storage()
/third_party/node/deps/v8/src/asmjs/
H A Dasm-types.cc5 #include "src/asmjs/asm-types.h"
9 #include "src/init/v8.h"
10 #include "src/utils/utils.h"
200 AsmMinMaxType(AsmType* dest, AsmType* src) in AsmMinMaxType() argument
201 : AsmCallableType(), return_type_(dest), arg_(src) {} in AsmMinMaxType()
232 AsmType* AsmType::MinMaxType(Zone* zone, AsmType* dest, AsmType* src) { in MinMaxType() argument
234 DCHECK_NOT_NULL(src->AsValueType()); in MinMaxType()
235 auto* MinMax = zone->New<AsmMinMaxType>(dest, src); in MinMaxType()
/third_party/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_flatshade.c57 /** Copy all the constant attributes from 'src' vertex to 'dst' vertex */
60 const struct vertex_header *src ) in copy_flats()
67 COPY_4FV(dst->data[attr], src->data[attr]); in copy_flats()
72 /** Copy all the color attributes from src vertex to dst0 & dst1 vertices */
76 const struct vertex_header *src ) in copy_flats2()
82 COPY_4FV(dst0->data[attr], src->data[attr]); in copy_flats2()
83 COPY_4FV(dst1->data[attr], src->data[attr]); in copy_flats2()
/third_party/mesa3d/src/panfrost/bifrost/
H A Dbifrost_isa.py145 for src in ins.findall('src'):
146 if src.attrib.get('pseudo', False) and not include_pseudo:
149 mask = int(src.attrib['mask'], 0) if ('mask' in src.attrib) else 0xFF
150 common['srcs'].append([int(src.attrib['start'], 0), mask])
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_nir.h209 void (*vote)(struct lp_build_nir_context *bld_base, LLVMValueRef src, nir_intrinsic_instr *instr, LLVMValueRef dst[4]);
211 void (*reduce)(struct lp_build_nir_context *bld_base, LLVMValueRef src, nir_intrinsic_instr *instr, LLVMValueRef dst[4]);
212 void (*ballot)(struct lp_build_nir_context *bld_base, LLVMValueRef src, nir_intrinsic_instr *instr, LLVMValueRef dst[4]);
215 LLVMValueRef src,
221 LLVMValueRef src, unsigned bit_size, LLVMValueRef invoc,
/third_party/node/deps/openssl/openssl/crypto/evp/
H A Dmac_lib.c51 EVP_MAC_CTX *EVP_MAC_CTX_dup(const EVP_MAC_CTX *src) in EVP_MAC_CTX_dup() argument
55 if (src->algctx == NULL) in EVP_MAC_CTX_dup()
64 *dst = *src; in EVP_MAC_CTX_dup()
71 dst->algctx = src->meth->dupctx(src->algctx); in EVP_MAC_CTX_dup()
/third_party/node/deps/uv/src/unix/
H A Dibmi.c155 static void iconv_e2a(unsigned char src[], unsigned char dst[], size_t length) { in iconv_e2a() argument
158 dst[i] = e2a[src[i]]; in iconv_e2a()
162 static void iconv_a2e(const char* src, unsigned char dst[], size_t length) { in iconv_a2e() argument
166 srclen = strlen(src); in iconv_a2e()
170 dst[i] = a2e[src[i]]; in iconv_a2e()
/third_party/python/Lib/distutils/
H A Dbcppcompiler.py97 src, ext = build[obj]
101 src = os.path.normpath(src)
113 self.spawn (["brcc32", "-fo", obj, src])
137 extra_postargs + [src])
/third_party/openssl/crypto/evp/
H A Dmac_lib.c51 EVP_MAC_CTX *EVP_MAC_CTX_dup(const EVP_MAC_CTX *src) in EVP_MAC_CTX_dup() argument
55 if (src->algctx == NULL) in EVP_MAC_CTX_dup()
64 *dst = *src; in EVP_MAC_CTX_dup()
71 dst->algctx = src->meth->dupctx(src->algctx); in EVP_MAC_CTX_dup()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ssbo/
H A DvktSSBOCornerCase.cpp65 std::ostringstream src; in useCornerCaseShader() local
68 src << in useCornerCaseShader()
90 src << " allOk = allOk & int(compare_ivec4((blockA.a[" << i << "]), ivec4(" in useCornerCaseShader()
97 src << in useCornerCaseShader()
104 return src.str(); in useCornerCaseShader()
/third_party/vk-gl-cts/execserver/
H A DxsExecutionServer.cpp60 void MessageBuilder::read (ByteBuffer& src) in read() argument
66 src.getNumElements() > 0) in read()
67 m_buffer.push_back(src.popBack()); in read()
83 size_t numToRead = (size_t)de::min(src.getNumElements(), (int)numBytesLeft); in read()
89 src.popBack(&m_buffer[curBufPos], (int)numToRead); in read()
/third_party/skia/third_party/externals/libwebp/examples/
H A Danim_diff.c41 static WEBP_INLINE int PixelsAreSimilar(uint32_t src, uint32_t dst, in PixelsAreSimilar() argument
43 const int src_a = (src >> 24) & 0xff; in PixelsAreSimilar()
44 const int src_r = (src >> 16) & 0xff; in PixelsAreSimilar()
45 const int src_g = (src >> 8) & 0xff; in PixelsAreSimilar()
46 const int src_b = (src >> 0) & 0xff; in PixelsAreSimilar()
/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Dfilters_mips_dsp_r2.c15 #include "src/dsp/dsp.h"
19 #include "src/dsp/dsp.h"
50 "lbu %[temp2], 0(%[src]) \n\t" \
51 "lbu %[temp3], 1(%[src]) \n\t" \
52 "lbu %[temp4], 2(%[src]) \n\t" \
53 "lbu %[temp5], 3(%[src]) \n\t" \
62 "addiu %[src], %[src], 4 \n\t" \
68 "ulw %[temp1], -1(%[src]) \n\t" \
69 "ulw %[temp2], 0(%[src]) \
104 PredictLine_MIPSdspR2(const uint8_t* src, uint8_t* dst, int length) PredictLine_MIPSdspR2() argument
[all...]
/third_party/skia/src/xml/
H A DSkXMLWriter.cpp8 #include "src/xml/SkXMLWriter.h"
108 static size_t escape_markup(char dst[], const char src[], size_t length) { in escape_markup() argument
110 const char* stop = src + length; in escape_markup()
112 while (src < stop) { in escape_markup()
114 const char* seq = escape_char(*src, orig); in escape_markup()
125 // bump to the next src char in escape_markup()
126 src += 1; in escape_markup()
272 #include "src/xml/SkXMLParser.h"
/third_party/skia/third_party/externals/tint/src/transform/
H A Drobustness.cc15 #include "src/transform/robustness.h"
21 #include "src/program_builder.h"
22 #include "src/sem/block_statement.h"
23 #include "src/sem/call.h"
24 #include "src/sem/expression.h"
25 #include "src/sem/reference_type.h"
26 #include "src/sem/statement.h"
57 auto* ret_type = ctx.src->Sem().Get(expr->object)->Type(); in Transform()
119 auto* idx_sem = ctx.src->Sem().Get(expr->index); in Transform()
198 auto src in Transform() local
[all...]
/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/lexer/
H A Dlexer_test.go21 "dawn.googlesource.com/tint/tools/src/cmd/intrinsic-gen/lexer"
22 "dawn.googlesource.com/tint/tools/src/cmd/intrinsic-gen/tok"
27 src string
111 got, err := lexer.Lex([]rune(test.src), filepath)
112 name := fmt.Sprintf(`Lex("%v")`, test.src)
130 src string
139 got, err := lexer.Lex([]rune(test.src), "test.txt")
/third_party/skia/third_party/externals/icu/source/common/
H A Dusc_impl.cpp192 uscript_openRun(const UChar *src, int32_t length, UErrorCode *pErrorCode) in uscript_openRun() argument
207 uscript_setRunText(result, src, length, pErrorCode); in uscript_openRun()
240 uscript_setRunText(UScriptRun *scriptRun, const UChar *src, int32_t length, UErrorCode *pErrorCode) in uscript_setRunText() argument
246 if (scriptRun == NULL || length < 0 || ((src == NULL) != (length == 0))) { in uscript_setRunText()
251 scriptRun->textArray = src; in uscript_setRunText()
/third_party/unity/auto/
H A Dgenerate_module.rb62 @options[:path_src] = "#{__dir__}/../src/" if @options[:path_src].nil?
71 'src' => {
102 pattern: 'src',
104 src: [],
136 triad = [{ ext: '.c', path: @options[:path_src], prefix: '', template: TEMPLATE_SRC, inc: :src, boilerplate: @options[:boilerplates][:src] },
141 pattern = (pattern || @options[:pattern] || 'src').downcase
161 when :src then (@options[:includes][:src] || []) | (pattern_traits[:inc].map { |f| format(f, module_name) })
287 " -i\"include\" sets the path to output headers to 'include' (DEFAULT ../src)",
[all...]
/third_party/skia/gm/
H A Dimagefromyuvtextures.cpp29 #include "src/core/SkMathPriv.h"
30 #include "src/core/SkYUVMath.h"
101 auto src = *bmp.getAddr32(x, y); in CreatePlanes() local
102 rgba[0] += (src & 0x000000ff) >> 0; in CreatePlanes()
103 rgba[1] += (src & 0x0000ff00) >> 8; in CreatePlanes()
104 rgba[2] += (src & 0x00ff0000) >> 16; in CreatePlanes()
105 rgba[3] += (src & 0xff000000) >> 24; in CreatePlanes()
164 *errorMsg = "Couldn't create src YUVA image.";
/third_party/skia/include/core/
H A DSkString.h187 void set(const SkString& src) { *this = src; } in set() argument
191 void insert(size_t offset, const SkString& src) { this->insert(offset, src.c_str(), src.size()); } in insert() argument
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ssbo/
H A DvktSSBOCornerCase.cpp65 std::ostringstream src; in useCornerCaseShader() local
68 src << in useCornerCaseShader()
90 src << " allOk = allOk & int(compare_ivec4((blockA.a[" << i << "]), ivec4(" in useCornerCaseShader()
97 src << in useCornerCaseShader()
104 return src.str(); in useCornerCaseShader()
/third_party/vk-gl-cts/framework/delibs/coding_guidelines/
H A Dprettify.js11 1)}}h.push(e+i,o);i+=m.length;j=j.substring(m.length);if(o!=="com"&&/\S/.test(m))f=m}return h}}var oa=v([],[["pln",/^[^<]+/,null],["dec",/^<!\w[^>]*(?:>|$)/,null],["com",/^<!--[\s\S]*?(?:--\>|$)/,null],["src",/^<\?[\s\S]*?(?:\?>|$)/,null],["src",/^<%[\s\S]*?(?:%>|$)/,null],["src",/^<(script|style|xmp)\b[^>]*>[\s\S]*?<\/\1\b[^>]*>/i,null],["tag",/^<\/?\w[^<>]*>/,null]]);function pa(b){var a=oa(b);for(var c=0;c<a.length;c+=2)if(a[c+1]==="src"){var d,g;d=a[c];g=c+2<a.length?a[c+2]:b.length;var e=b.substring(d,
12 g),h=e.match(/^(<[^>]*>)([\s\S]*)(<\/[^>]*>)$/);if(h)a.splice(c,2,d,"tag",d+h[1].length,"src",d+h[1].length+(h[2]||"").length,"tag")}return a}var qa=v([["atv",/^\'[^\']*(?:\'|$)/,null,"'"],["atv",/^\"[^\"]*(?:\"|$)/,null,'"'],["pun",/^[<>\/=]+/,null,"<>/="]],[["tag",/^[\w:\-]+/,/^</],["atv",/^[\w\-]+/,/^=/],["atn",/^[\w:\-]+/,null],["pln",/^\s+/,null," \t\r\n"]]);function ra(b,a){for(var c=0;c<a.length;c+=2){var d=a[c+1];if(d==="tag"){var g,e;g=a[c];e=c+2<a.length?a[c+2]:b.length;var h=b.substring(g,
16 "typ"}}u(n,i,j,2);j+=n.length-2}}return i}return function(f){var i=g(f);i=h(f,i);return i}}var G=r({keywords:W,hashComments:true,cStyleComments:true,multiLineStrings:true,regexLiterals:true});function sa(b,a){for(var c=0;c<a.length;c+=2){var d=a[c+1];if(d==="src"){var g,e;g=a[c];e=c+2<a.length?a[c+2]:b.length;var h=G(b.substring(g,e));for(var f=0,i=h.length;f<i;f+=2)h[f]+=g;u(h,a,c,2);c+=h.length-2}}return a}function ta(b,a){var c=false;for(var d=0;d<a.length;d+=2){var g=a[d+1],e,h;if(g==="atn"){e=
23 0;){var s=A[B];s.parentNode.replaceChild(document.createTextNode("\r\n"),s)}}}}}if(h<d.length)setTimeout(f,250);else if(b)b()}f()}window.PR_normalizedHtml=z;window.prettyPrintOne=T;window.prettyPrint=wa;window.PR={createSimpleLexer:v,registerLangHandler:q,sourceDecorator:r,PR_ATTRIB_NAME:"atn",PR_ATTRIB_VALUE:"atv",PR_COMMENT:"com",PR_DECLARATION:"dec",PR_KEYWORD:"kwd",PR_LITERAL:"lit",PR_PLAIN:"pln",PR_PUNCTUATION:"pun",PR_SOURCE:"src",PR_STRING:"str",PR_TAG:"tag",PR_TYPE:"typ"}})();
/third_party/vk-gl-cts/framework/delibs/depool/
H A DdePoolArray.h115 DE_INLINE deBool TYPENAME##_copy (DE_PTR_TYPE(TYPENAME) dst, const TYPENAME* src) DE_UNUSED_FUNCTION; \
189 DE_INLINE deBool TYPENAME##_copy (DE_PTR_TYPE(TYPENAME) dst, const TYPENAME* src) \
191 DE_ASSERT(dst && src); \
193 int numElements = src->numElements; \
198 TYPENAME##_set(dst, ndx, TYPENAME##_get(src, ndx)); \

Completed in 17 milliseconds

1...<<131132133134135136137138139140>>...282