Searched refs:line_offset (Results 1 - 25 of 38) sorted by relevance

12

/external/elfutils/libdw/
H A Ddwarf_macro_getsrcfiles.c43 Dwarf_Off line_offset = table->line_offset; local
44 if (line_offset == (Dwarf_Off) -1)
74 if (__libdw_getsrclines (dbg, line_offset, table->comp_dir,
H A Ddwarf_getmacros.c126 Dwarf_Off line_offset = (Dwarf_Off) -1; local
128 if (unlikely (INTUSE(dwarf_formudata) (attr, &line_offset) != 0))
137 table->line_offset = line_offset;
170 Dwarf_Off line_offset = (Dwarf_Off) -1; local
173 line_offset = read_addr_unaligned_inc (is_64bit ? 8 : 4, dbg, readp);
182 if (unlikely (INTUSE(dwarf_formudata) (attr, &line_offset) != 0))
254 .line_offset = line_offset,
H A DlibdwP.h362 Dwarf_Off line_offset; member in struct:__anon6756
/external/python/cpython3/Lib/
H A Ddis.py244 line_offset = first_line - co.co_firstlineno
246 line_offset = 0
249 line_offset)
280 cells=None, linestarts=None, line_offset=0):
295 starts_line += line_offset
339 *, file=None, line_offset=0):
346 line_offset=line_offset):
442 line_offset=self._line_offset)
471 line_offset
[all...]
/external/v8/src/
H A Dcompilation-cache.cc112 Handle<Object> name, int line_offset,
123 if (line_offset != script->line_offset()) return false;
141 Handle<String> source, Handle<Object> name, int line_offset,
161 if (HasOrigin(function_info, name, line_offset, column_offset,
177 HasOrigin(shared, name, line_offset, column_offset, resource_options));
276 Handle<String> source, Handle<Object> name, int line_offset,
282 return script_.Lookup(source, name, line_offset, column_offset,
111 HasOrigin(Handle<SharedFunctionInfo> function_info, Handle<Object> name, int line_offset, int column_offset, ScriptOriginOptions resource_options) argument
140 Lookup( Handle<String> source, Handle<Object> name, int line_offset, int column_offset, ScriptOriginOptions resource_options, Handle<Context> context, LanguageMode language_mode) argument
275 LookupScript( Handle<String> source, Handle<Object> name, int line_offset, int column_offset, ScriptOriginOptions resource_options, Handle<Context> context, LanguageMode language_mode) argument
H A Dcompilation-cache.h82 int line_offset, int column_offset,
92 int line_offset, int column_offset,
155 int line_offset, int column_offset,
H A Dcompiler.h102 int eval_scope_position, int eval_position, int line_offset = 0,
113 Handle<String> source, Handle<Object> script_name, int line_offset,
H A Dcompiler.cc1481 int eval_scope_position, int eval_position, int line_offset,
1526 script->set_line_offset(line_offset);
1643 Handle<String> source, Handle<Object> script_name, int line_offset,
1675 source, script_name, line_offset, column_offset, resource_options,
1735 script->set_line_offset(line_offset);
1477 GetFunctionFromEval( Handle<String> source, Handle<SharedFunctionInfo> outer_info, Handle<Context> context, LanguageMode language_mode, ParseRestriction restriction, int parameters_end_pos, int eval_scope_position, int eval_position, int line_offset, int column_offset, Handle<Object> script_name, ScriptOriginOptions options) argument
1642 GetSharedFunctionInfoForScript( Handle<String> source, Handle<Object> script_name, int line_offset, int column_offset, ScriptOriginOptions resource_options, Handle<Object> source_map_url, Handle<Context> context, v8::Extension* extension, ScriptData** cached_data, ScriptCompiler::CompileOptions compile_options, NativesFlag natives) argument
H A Dapi.cc282 v8::Integer::New(v8_isolate, script->line_offset()),
2136 int line_offset = 0; local
2142 line_offset = static_cast<int>(source->resource_line_offset->Value());
2152 str, name_obj, line_offset, column_offset, source->resource_options,
2366 int line_offset = 0; local
2372 line_offset = static_cast<int>(source->resource_line_offset->Value());
2382 eval_scope_position, eval_position, line_offset,
9157 return Utils::OpenHandle(this)->line_offset();
9282 int line_offset = 0; local
9285 line_offset
9315 int line_offset = GetSmiValue(line_ends, line); local
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dgpio.h39 * @line_offset: the local offset on this GPIO device, fill this in when
50 __u32 line_offset; member in struct:gpioline_info
/external/tensorflow/tensorflow/compiler/xla/tools/parser/
H A Dhlo_lexer.cc334 size_t line_offset = StringPieceFromPointers(start, ptr).rfind('\n'); local
335 if (line_offset == StringPiece::npos) {
336 line_offset = 0;
338 return {line_no, ptr - start - line_offset};
/external/swiftshader/third_party/LLVM/lib/DebugInfo/
H A DDWARFDebugLine.cpp424 int32_t line_offset = prologue->LineBase + local
426 state.Line += line_offset;
/external/deqp/external/openglcts/modules/glesext/geometry_shader/
H A DesextcGeometryShaderLimits.cpp1896 const unsigned int line_offset = y * line_size; local
1897 const unsigned int first_texel_offset = line_offset + point_offset;
2213 const unsigned int line_offset = y * line_size; local
2217 const unsigned int texel_offset = line_offset + x * m_texture_pixel_size;
2522 const unsigned int line_offset = y * line_size; local
2523 const unsigned int first_texel_offset = line_offset + point_offset;
3287 const unsigned int line_offset = y * line_size; local
3288 const unsigned int first_texel_offset = line_offset + point_offset;
/external/deqp/external/openglcts/modules/glesext/texture_cube_map_array/
H A DesextcTextureCubeMapArrayColorDepthAttachments.cpp150 const glw::GLuint line_offset = y * line_size; local
154 const glw::GLuint pixel_offset = line_offset + x * N_Components;
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp497 int32_t line_offset = local
499 State.Row.Line += line_offset;
/external/python/cpython2/Lib/test/
H A Dtest_sys_settrace.py259 def compare_events(self, line_offset, events, expected_events):
260 events = [(l - line_offset, e) for (l, e) in events]
/external/python/cpython3/Lib/test/
H A Dtest_sys_settrace.py260 def compare_events(self, line_offset, events, expected_events):
261 events = [(l - line_offset, e) for (l, e) in events]
/external/v8/src/debug/
H A Ddebug.js333 if (!(script.line_offset <= this.line_ &&
334 this.line_ < script.line_offset + %ScriptLineCount(script))) {
356 var source_line = %ScriptSourceLine(script, line || script.line_offset);
H A Dmirrors.js2279 return this.script_.line_offset;
/external/deqp/external/openglcts/modules/gl/
H A Dgl4cStencilTexturingTests.cpp1041 const GLuint line_offset = line_size * y; local
1055 GLubyte* pixel_data = &texture_data[0] + line_offset + pixel_offset;
H A Dgl4cCopyImageTests.cpp3197 const GLuint line_offset = line_size * y; local
3199 GLubyte* line = layer + line_offset;
3735 const GLuint line_offset = y * line_size; local
3738 const GLubyte* left_line_data = left_data + line_offset;
3739 const GLubyte* right_line_data = right_data + line_offset;
4032 const GLuint line_offset = line_size * y; local
4034 GLubyte* line_data = layer_data + line_offset;
H A Dgl4cShaderImageLoadStoreTests.cpp7614 const GLuint line_offset = y * edge * n_components + layer_offset; local
7620 const GLuint texel_offset = x * n_components + line_offset;
8178 const GLuint line_offset = y * m_texture_edge * n_components; local
8182 const GLuint texel_offset = x * n_components + line_offset;
8295 const GLuint line_offset = y * m_texture_edge * n_components; local
8299 const GLuint texel_offset = x * n_components + line_offset;
8376 const GLuint line_offset = y * m_texture_edge * n_components; local
8380 const GLuint texel_offset = x * n_components + line_offset;
H A Dgl4cShaderSubroutineTests.cpp5745 const GLuint line_offset = y * m_texture_width * 4; local
5749 const GLuint point_offset = x * 4 + line_offset;
5820 const GLuint line_offset = y * m_texture_width * 4; local
5824 const GLuint point_offset = x * 4 + line_offset;
5928 const GLuint line_offset = y * m_texture_width * 4; local
5932 const GLuint point_offset = x * 4 + line_offset;
6561 const GLuint line_offset = y * m_texture_width * 4; local
6565 const GLuint point_offset = line_offset + x * 4;
H A Dgl4cMultiBindTests.cpp4239 const size_t line_offset = j * width; local
4241 data[line_offset] = 1;
4242 data[line_offset + last_pixel_in_line_offset] = 1;
/external/v8/src/runtime/
H A Druntime-debug.cc1663 line = NumberToInt32(*opt_line) - script->line_offset();
1789 line -= script_handle->line_offset();

Completed in 1956 milliseconds

12