Home
last modified time | relevance | path

Searched refs:location (Results 1 – 25 of 5026) sorted by relevance

12345678910>>...202

/external/elfutils/tests/
Drun-funcretval.sh34 () fun_char: return value location: {0x50, 0}
35 () fun_short: return value location: {0x50, 0}
36 () fun_int: return value location: {0x50, 0}
37 () fun_ptr: return value location: {0x50, 0}
38 () fun_iptr: return value location: {0x50, 0}
39 () fun_long: return value location: {0x50, 0}
40 () fun_int128: return value location: {0x50, 0} {0x93, 0x8} {0x51, 0} {0x93, 0x8}
41 () fun_large_struct1: return value location: {0x70, 0}
42 () fun_large_struct2: return value location: {0x70, 0}
43 () fun_float: return value location: {0x90, 0x40}
[all …]
/external/deqp-deps/glslang/Test/
D330.frag4 layout(location=0, index=0) out vec4 outVar;
44 layout(location = -2) in vec4 v1; // ERROR
45 layout(location = start + 2) in vec4 v2; // ERROR
46 layout(location = 4.7e10) in vec4 v20; // ERROR
47 layout(location = +60) in float v21; // ERROR
48 layout(location = (2)) in float v22; // ERROR
52 layout(location = 3) float f2; // ERROR
55 layout(location = 1) in inblock { // ERROR
57 layout(location = 3) float f2; // ERROR
60 layout(location = 1) uniform ublock { // ERROR
[all …]
D440.vert3 // Note 'location' tests for enhanced layouts are in 330.frag
5 layout(location = 2, component = 2) in vec2 a;
6 layout(location = 2, component = 1) in float b;
8 layout(location = 3, component = 2) in vec3 c; // ERROR: c overflows components 2 and 3
10 layout(location = 0, component = 3) in float d[4];
12 layout(location = 4, component = 0) in vec3 e[5];
13 layout(location = 4, component = 3) in float f[5];
15 layout(location = 9, component = 4) in float g[6]; // ERROR, component too big
17 layout(location = 4, component = 2) in vec2 h; // component overlap okay for vertex in
19 layout(location = 3, component = 2) out vec2 i;
[all …]
/external/perfetto/src/trace_processor/importers/proto/
Dprofiler_util.cc27 base::Optional<base::StringView> PackageFromApp(base::StringView location) { in PackageFromApp() argument
28 location = location.substr(base::StringView("/data/app/").size()); in PackageFromApp()
30 if (location.at(0) == '~') { in PackageFromApp()
31 size_t slash = location.find('/'); in PackageFromApp()
37 size_t end = location.find('/', start + 1); in PackageFromApp()
41 location = location.substr(start, end); in PackageFromApp()
42 size_t minus = location.find('-'); in PackageFromApp()
46 return location.substr(0, minus); in PackageFromApp()
52 base::StringView location) { in PackageFromLocation() argument
59 if (location.size() >= sysui.size() && in PackageFromLocation()
[all …]
/external/mesa3d/src/mesa/main/
Duniforms.c183 _mesa_Uniform1f(GLint location, GLfloat v0) in _mesa_Uniform1f() argument
186 _mesa_uniform(location, 1, &v0, ctx, ctx->_Shader->ActiveProgram, GLSL_TYPE_FLOAT, 1); in _mesa_Uniform1f()
190 _mesa_Uniform2f(GLint location, GLfloat v0, GLfloat v1) in _mesa_Uniform2f() argument
196 _mesa_uniform(location, 1, v, ctx, ctx->_Shader->ActiveProgram, GLSL_TYPE_FLOAT, 2); in _mesa_Uniform2f()
200 _mesa_Uniform3f(GLint location, GLfloat v0, GLfloat v1, GLfloat v2) in _mesa_Uniform3f() argument
207 _mesa_uniform(location, 1, v, ctx, ctx->_Shader->ActiveProgram, GLSL_TYPE_FLOAT, 3); in _mesa_Uniform3f()
211 _mesa_Uniform4f(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, in _mesa_Uniform4f() argument
220 _mesa_uniform(location, 1, v, ctx, ctx->_Shader->ActiveProgram, GLSL_TYPE_FLOAT, 4); in _mesa_Uniform4f()
224 _mesa_Uniform1i(GLint location, GLint v0) in _mesa_Uniform1i() argument
227 _mesa_uniform(location, 1, &v0, ctx, ctx->_Shader->ActiveProgram, GLSL_TYPE_INT, 1); in _mesa_Uniform1i()
[all …]
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/lang/
Dwpa_gui_de.ts7 <location filename="../addinterface.cpp" line="38"/>
12 <location filename="../addinterface.cpp" line="47"/>
17 <location filename="../addinterface.cpp" line="48"/>
22 <location filename="../addinterface.cpp" line="49"/>
27 <location filename="../addinterface.cpp" line="221"/>
32 <location filename="../addinterface.cpp" line="229"/>
37 <location filename="../addinterface.cpp" line="238"/>
45 <location filename="../wpagui.cpp" line="1621"/>
53 <location filename="../eventhistory.ui" line="13"/>
58 <location filename="../eventhistory.ui" line="48"/>
[all …]
/external/deqp/external/vulkancts/data/vulkan/glsl/440/
Dlinkage.test20 layout(location = 0) in vec4 dEQP_Position;
21 layout(location = 1, component = 0) in float in0_0;
22 layout(location = 1, component = 1) in float in0_1;
23 layout(location = 0) out vec2 var0;
36 layout(location = 0) in vec2 var0;
37 layout(location = 0) out vec2 dEQP_FragColor;
60 layout(location = 0) in vec4 dEQP_Position;
61 layout(location = 1, component = 0) in float in0_0;
62 layout(location = 1, component = 1) in float in0_1;
63 layout(location = 1, component = 3) in float in0_3;
[all …]
/external/deqp-deps/glslang/Test/baseResults/
D330.frag.out11 ERROR: 0:46: 'location' : location is too large
15 ERROR: 0:57: 'location on block member' : not supported for this version or the enabled extensions
16 ERROR: 0:62: 'location on block member' : can only use in an in/out block
17 ERROR: 0:62: 'location qualifier on uniform or buffer' : not supported for this version or the enab…
18 ERROR: 0:60: 'location qualifier on uniform or buffer' : not supported for this version or the enab…
19 ERROR: 0:60: 'location' : cannot apply to uniform or buffer block
23 ERROR: 0:91: 'location on block member' : can only use in an in/out block
24 ERROR: 0:91: 'location qualifier on uniform or buffer' : not supported for this version or the enab…
25 ERROR: 0:91: 'location' : overlapping use of location 3
26 ERROR: 0:89: 'location qualifier on uniform or buffer' : not supported for this version or the enab…
[all …]
D300layout.frag.out2 ERROR: 0:4: 'location qualifier on input' : not supported in this stage: fragment
3 ERROR: 0:4: 'location qualifier on input' : not supported for this version or the enabled extension…
4 ERROR: 0:17: 'location' : too large for fragment output
5 ERROR: 0:18: 'location' : too large for fragment output
6 ERROR: 0:18: 'location' : overlapping use of location 41
7 ERROR: 0:19: 'location' : too large for fragment output
8 ERROR: 0:19: 'location' : overlapping use of location 40
18 0:12 'c' (layout( location=1) out mediump 4-component vector of float)
19 0:12 'color' (layout( location=2) smooth in mediump 4-component vector of float)
21 0:13 'p' (layout( location=3) out mediump 4-component vector of float)
[all …]
D440.vert.out4 ERROR: 0:23: 'location' : overlapping use of location 4
5 ERROR: 0:26: 'location' : overlapping use of location 2
6 ERROR: 0:31: 'location' : overlapping use of location 15
7 ERROR: 0:32: 'location' : overlapping use of location 10
8 ERROR: 0:37: 'location' : overlapping use of location 20
14 ERROR: 0:46: 'component' : must specify 'location' to use 'component'
15 ERROR: 0:52: 'location' : overlapping use of location 40
20 ERROR: 0:61: 'location/component/index' : cannot declare a default, use a full declaration
23 ERROR: 0:71: 'location' : overlapping use of location 55
24 ERROR: 0:75: 'location' : overlapping use of location 57
[all …]
/external/deqp-deps/SPIRV-Tools/
DAndroid.bp64location) --extinst-vendor-grammar=$(location :deqp_spirv_headers_unified1_extinst.spv-amd-shader-…
65 …$(location) --extinst-vendor-grammar=$(location :deqp_spirv_headers_unified1_extinst.spv-amd-gcn-s…
66location) --extinst-vendor-grammar=$(location :deqp_spirv_headers_unified1_extinst.spv-amd-shader-…
67 …"$(location) --extinst-vendor-grammar=$(location :deqp_spirv_headers_unified1_extinst.debuginfo.gr…
68 …(location) --extinst-vendor-grammar=$(location :deqp_spirv_headers_unified1_extinst.spv-amd-shader…
69 …(location) --extinst-vendor-grammar=$(location :deqp_spirv_headers_unified1_extinst.opencl.debugin…
70location) --extinst-vendor-grammar=$(location :deqp_spirv_headers_unified1_extinst.nonsemantic.cls…
71 …"$(location) --extinst-opencl-grammar=$(location :deqp_spirv_headers_unified1_extinst.opencl.std.1…
72 …"$(location) --extinst-glsl-grammar=$(location :deqp_spirv_headers_unified1_extinst.glsl.std.450.g…
73location) --spirv-core-grammar=$(location :deqp_spirv_headers_unified1_spirv.core.grammar.json) --…
[all …]
/external/dokka/
Dpackage-list3 $dokka.location:kotlin$and(java.math.BigInteger, java.math.BigInteger)kotlin/java.math.-big-intege…
4 $dokka.location:kotlin$dec(java.math.BigDecimal)kotlin/java.math.-big-decimal/dec.html
5 $dokka.location:kotlin$dec(java.math.BigInteger)kotlin/java.math.-big-integer/dec.html
6 $dokka.location:kotlin$div(java.math.BigDecimal, java.math.BigDecimal)kotlin/java.math.-big-decima…
7 $dokka.location:kotlin$div(java.math.BigInteger, java.math.BigInteger)kotlin/java.math.-big-intege…
8 $dokka.location:kotlin$inc(java.math.BigDecimal)kotlin/java.math.-big-decimal/inc.html
9 $dokka.location:kotlin$inc(java.math.BigInteger)kotlin/java.math.-big-integer/inc.html
10 $dokka.location:kotlin$inv(java.math.BigInteger)kotlin/java.math.-big-integer/inv.html
11 $dokka.location:kotlin$minus(java.math.BigDecimal, java.math.BigDecimal)kotlin/java.math.-big-deci…
12 $dokka.location:kotlin$minus(java.math.BigInteger, java.math.BigInteger)kotlin/java.math.-big-inte…
[all …]
/external/kotlinx.coroutines/site/
Dstdlib.package.list3 $dokka.location:kotlin$and(java.math.BigInteger, java.math.BigInteger)kotlin/java.math.-big-intege…
4 $dokka.location:kotlin$dec(java.math.BigDecimal)kotlin/java.math.-big-decimal/dec.html
5 $dokka.location:kotlin$dec(java.math.BigInteger)kotlin/java.math.-big-integer/dec.html
6 $dokka.location:kotlin$div(java.math.BigDecimal, java.math.BigDecimal)kotlin/java.math.-big-decima…
7 $dokka.location:kotlin$div(java.math.BigInteger, java.math.BigInteger)kotlin/java.math.-big-intege…
8 $dokka.location:kotlin$inc(java.math.BigDecimal)kotlin/java.math.-big-decimal/inc.html
9 $dokka.location:kotlin$inc(java.math.BigInteger)kotlin/java.math.-big-integer/inc.html
10 $dokka.location:kotlin$inv(java.math.BigInteger)kotlin/java.math.-big-integer/inv.html
11 $dokka.location:kotlin$minus(java.math.BigDecimal, java.math.BigDecimal)kotlin/java.math.-big-deci…
12 $dokka.location:kotlin$minus(java.math.BigInteger, java.math.BigInteger)kotlin/java.math.-big-inte…
[all …]
/external/fonttools/Lib/fontTools/voltLib/
Dparser.py63 location = self.cur_token_location_
92 location
96 location=location)
102 location = self.cur_token_location_
112 location
115 location=location)
121 location = self.cur_token_location_
132 location
144 location
150 def_script = ast.ScriptDefinition(name, tag, langs, location=location)
[all …]
/external/fonttools/Lib/fontTools/feaLib/
Dparser.py86 self.ast.Comment(self.cur_token_, location=self.cur_token_location_)
130 location = self.cur_token_location_
152 location=location,
176 location=location,
194 location = self.cur_token_location_
203 name, x, y, contourpoint=contourpoint, location=location
212 _, content, location = self.lexer_.scan_anonymous_block(tag)
218 return self.ast.AnonymousBlock(tag, content, location=location)
223 location = self.cur_token_location_
229 return self.ast.AttachStatement(glyphs, contourPoints, location=location)
[all …]
Dast.py3 from fontTools.feaLib.location import FeatureLibLocation
158 def __init__(self, location=None): argument
160 if location and not isinstance(location, FeatureLibLocation):
161 location = FeatureLibLocation(*location)
162 self.location = location
188 def __init__(self, text, location=None): argument
189 super(Comment, self).__init__(location)
200 def __init__(self, location=None): argument
201 Expression.__init__(self, location)
215 def __init__(self, glyph, location=None): argument
[all …]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
DMutableMethodImplementation.java85 final MethodLocation location = instructionList.get(index); in MutableMethodImplementation() local
90 convertAndSetInstruction(location, codeAddressToIndex, instruction); in MutableMethodImplementation()
94 convertAndSetInstruction(location, codeAddressToIndex, instruction); in MutableMethodImplementation()
111 builderDebugItem.location = debugLocation; in MutableMethodImplementation()
218 instruction.location = newLoc;
223 MethodLocation location = instructionList.get(i);
224 location.index++;
225 location.codeAddress = codeAddress;
226 if (location.instruction != null) {
227 codeAddress += location.instruction.getCodeUnits();
[all …]
/external/swiftshader/src/OpenGL/libGLESv2/
DProgram.h149 bool setUniform1fv(GLint location, GLsizei count, const GLfloat *v);
150 bool setUniform2fv(GLint location, GLsizei count, const GLfloat *v);
151 bool setUniform3fv(GLint location, GLsizei count, const GLfloat *v);
152 bool setUniform4fv(GLint location, GLsizei count, const GLfloat *v);
153 …bool setUniformMatrix2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
154 …bool setUniformMatrix2x3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *valu…
155 …bool setUniformMatrix2x4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *valu…
156 …bool setUniformMatrix3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
157 …bool setUniformMatrix3x2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *valu…
158 …bool setUniformMatrix3x4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *valu…
[all …]
/external/swiftshader/third_party/SPIRV-Tools/
DAndroid.bp89location) --extinst-vendor-grammar=$(location :swiftshader_spirv_headers_unified1_extinst.spv-amd-…
90location) --spirv-core-grammar=$(location :swiftshader_spirv_headers_unified1_spirv.core.grammar.j…
91 …"$(location) --extinst-vendor-grammar=$(location :swiftshader_spirv_headers_unified1_extinst.debug…
92location) --extinst-vendor-grammar=$(location :swiftshader_spirv_headers_unified1_extinst.spv-amd-…
93location) --extinst-vendor-grammar=$(location :swiftshader_spirv_headers_unified1_extinst.spv-amd-…
94location) --extinst-vendor-grammar=$(location :swiftshader_spirv_headers_unified1_extinst.spv-amd-…
95location) --extinst-vendor-grammar=$(location :swiftshader_spirv_headers_unified1_extinst.opencl.d…
96location) --spirv-core-grammar=$(location :swiftshader_spirv_headers_unified1_spirv.core.grammar.j…
97 …(location) --extinst-opencl-grammar=$(location :swiftshader_spirv_headers_unified1_extinst.opencl.…
98 …"$(location) --extinst-glsl-grammar=$(location :swiftshader_spirv_headers_unified1_extinst.glsl.st…
[all …]
/external/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_shader_geometry.cpp70 streamout_data[out_var->data.location] = ir; in do_emit_store_deref()
83 if (input->data.location == VARYING_SLOT_POS || in do_process_inputs()
84 input->data.location == VARYING_SLOT_PSIZ || in do_process_inputs()
85 input->data.location == VARYING_SLOT_FOGC || in do_process_inputs()
86 input->data.location == VARYING_SLOT_CLIP_VERTEX || in do_process_inputs()
87 input->data.location == VARYING_SLOT_CLIP_DIST0 || in do_process_inputs()
88 input->data.location == VARYING_SLOT_CLIP_DIST1 || in do_process_inputs()
89 input->data.location == VARYING_SLOT_COL0 || in do_process_inputs()
90 input->data.location == VARYING_SLOT_COL1 || in do_process_inputs()
91 input->data.location == VARYING_SLOT_BFC0 || in do_process_inputs()
[all …]
/external/angle/src/libANGLE/renderer/null/
DProgramNULL.cpp47 void ProgramNULL::setUniform1fv(GLint location, GLsizei count, const GLfloat *v) {} in setUniform1fv() argument
49 void ProgramNULL::setUniform2fv(GLint location, GLsizei count, const GLfloat *v) {} in setUniform2fv() argument
51 void ProgramNULL::setUniform3fv(GLint location, GLsizei count, const GLfloat *v) {} in setUniform3fv() argument
53 void ProgramNULL::setUniform4fv(GLint location, GLsizei count, const GLfloat *v) {} in setUniform4fv() argument
55 void ProgramNULL::setUniform1iv(GLint location, GLsizei count, const GLint *v) {} in setUniform1iv() argument
57 void ProgramNULL::setUniform2iv(GLint location, GLsizei count, const GLint *v) {} in setUniform2iv() argument
59 void ProgramNULL::setUniform3iv(GLint location, GLsizei count, const GLint *v) {} in setUniform3iv() argument
61 void ProgramNULL::setUniform4iv(GLint location, GLsizei count, const GLint *v) {} in setUniform4iv() argument
63 void ProgramNULL::setUniform1uiv(GLint location, GLsizei count, const GLuint *v) {} in setUniform1uiv() argument
65 void ProgramNULL::setUniform2uiv(GLint location, GLsizei count, const GLuint *v) {} in setUniform2uiv() argument
[all …]
DProgramNULL.h37 void setUniform1fv(GLint location, GLsizei count, const GLfloat *v) override;
38 void setUniform2fv(GLint location, GLsizei count, const GLfloat *v) override;
39 void setUniform3fv(GLint location, GLsizei count, const GLfloat *v) override;
40 void setUniform4fv(GLint location, GLsizei count, const GLfloat *v) override;
41 void setUniform1iv(GLint location, GLsizei count, const GLint *v) override;
42 void setUniform2iv(GLint location, GLsizei count, const GLint *v) override;
43 void setUniform3iv(GLint location, GLsizei count, const GLint *v) override;
44 void setUniform4iv(GLint location, GLsizei count, const GLint *v) override;
45 void setUniform1uiv(GLint location, GLsizei count, const GLuint *v) override;
46 void setUniform2uiv(GLint location, GLsizei count, const GLuint *v) override;
[all …]
/external/mesa3d/src/compiler/nir/
Dnir_linking_helpers.c41 if (var->data.location < 0) in get_variable_io_mask()
44 unsigned location = var->data.patch ? in get_variable_io_mask() local
45 var->data.location - VARYING_SLOT_PATCH0 : var->data.location; in get_variable_io_mask()
50 assert(var->data.location >= 0); in get_variable_io_mask()
59 return ((1ull << slots) - 1) << location; in get_variable_io_mask()
138 if (var->data.location < VARYING_SLOT_VAR0 && var->data.location >= 0) in nir_remove_unused_io_vars()
151 var->data.location = 0; in nir_remove_unused_io_vars()
275 assert(var->data.location >= 0); in get_unmoveable_components_masks()
278 if (var->data.location >= VARYING_SLOT_VAR0 && in get_unmoveable_components_masks()
279 var->data.location - VARYING_SLOT_VAR0 < MAX_VARYINGS_INCL_PATCH) { in get_unmoveable_components_masks()
[all …]
/external/doclava/src/com/google/doclava/parser/
DJavaParser.java471 dbg.location(293, 1); in compilationUnit()
480 dbg.location(298,9); in compilationUnit()
502 dbg.location(298,13); in compilationUnit()
521 dbg.location(298,14); in compilationUnit()
534 dbg.location(300,13); in compilationUnit()
547 dbg.location(302,9); in compilationUnit()
571 dbg.location(302,10); in compilationUnit()
587 dbg.location(304,9); in compilationUnit()
611 dbg.location(304,10); in compilationUnit()
638 dbg.location(306, 5); in compilationUnit()
[all …]
/external/llvm-project/lldb/source/Target/
DAssertFrameRecognizer.cpp36 bool GetAbortLocation(llvm::Triple::OSType os, SymbolLocation &location) { in GetAbortLocation() argument
40 location.module_spec = FileSpec("libsystem_kernel.dylib"); in GetAbortLocation()
41 location.symbols.push_back(ConstString("__pthread_kill")); in GetAbortLocation()
44 location.module_spec = FileSpec("libc.so.6"); in GetAbortLocation()
45 location.symbols.push_back(ConstString("raise")); in GetAbortLocation()
46 location.symbols.push_back(ConstString("__GI_raise")); in GetAbortLocation()
47 location.symbols.push_back(ConstString("gsignal")); in GetAbortLocation()
67 bool GetAssertLocation(llvm::Triple::OSType os, SymbolLocation &location) { in GetAssertLocation() argument
71 location.module_spec = FileSpec("libsystem_c.dylib"); in GetAssertLocation()
72 location.symbols.push_back(ConstString("__assert_rtn")); in GetAssertLocation()
[all …]

12345678910>>...202