/external/elfutils/libdw/ |
D | dwarf_macro_getsrcfiles.c | 43 Dwarf_Off line_offset = table->line_offset; in dwarf_macro_getsrcfiles() local 44 if (line_offset == (Dwarf_Off) -1) in dwarf_macro_getsrcfiles() 74 if (__libdw_getsrclines (dbg, line_offset, table->comp_dir, in dwarf_macro_getsrcfiles()
|
D | dwarf_getmacros.c | 126 Dwarf_Off line_offset = (Dwarf_Off) -1; in get_macinfo_table() local 128 if (unlikely (INTUSE(dwarf_formudata) (attr, &line_offset) != 0)) in get_macinfo_table() 137 table->line_offset = line_offset; in get_macinfo_table() 170 Dwarf_Off line_offset = (Dwarf_Off) -1; in get_table_for_offset() local 173 line_offset = read_addr_unaligned_inc (is_64bit ? 8 : 4, dbg, readp); in get_table_for_offset() 182 if (unlikely (INTUSE(dwarf_formudata) (attr, &line_offset) != 0)) in get_table_for_offset() 254 .line_offset = line_offset, in get_table_for_offset()
|
D | libdwP.h | 362 Dwarf_Off line_offset; member
|
/external/python/cpython3/Lib/ |
D | dis.py | 244 line_offset = first_line - co.co_firstlineno 246 line_offset = 0 249 line_offset) 280 cells=None, linestarts=None, line_offset=0): argument 295 starts_line += line_offset 339 *, file=None, line_offset=0): argument 346 line_offset=line_offset): 442 line_offset=self._line_offset) 471 line_offset=self._line_offset,
|
/external/v8/src/ |
D | compilation-cache.cc | 112 Handle<Object> name, int line_offset, in HasOrigin() argument 123 if (line_offset != script->line_offset()) return false; in HasOrigin() 141 Handle<String> source, Handle<Object> name, int line_offset, in Lookup() argument 161 if (HasOrigin(function_info, name, line_offset, column_offset, in Lookup() 177 HasOrigin(shared, name, line_offset, column_offset, resource_options)); in Lookup() 276 Handle<String> source, Handle<Object> name, int line_offset, in LookupScript() argument 282 return script_.Lookup(source, name, line_offset, column_offset, in LookupScript()
|
D | compilation-cache.h | 82 int line_offset, int column_offset, 92 int line_offset, int column_offset, 155 int line_offset, int column_offset,
|
D | compiler.h | 102 int eval_scope_position, int eval_position, int line_offset = 0, 113 Handle<String> source, Handle<Object> script_name, int line_offset,
|
D | compiler.cc | 1481 int eval_scope_position, int eval_position, int line_offset, in GetFunctionFromEval() argument 1526 script->set_line_offset(line_offset); in GetFunctionFromEval() 1643 Handle<String> source, Handle<Object> script_name, int line_offset, in GetSharedFunctionInfoForScript() argument 1675 source, script_name, line_offset, column_offset, resource_options, in GetSharedFunctionInfoForScript() 1735 script->set_line_offset(line_offset); in GetSharedFunctionInfoForScript()
|
D | api.cc | 282 v8::Integer::New(v8_isolate, script->line_offset()), in GetScriptOriginForScript() 2136 int line_offset = 0; in CompileUnboundInternal() local 2142 line_offset = static_cast<int>(source->resource_line_offset->Value()); in CompileUnboundInternal() 2152 str, name_obj, line_offset, column_offset, source->resource_options, in CompileUnboundInternal() 2366 int line_offset = 0; in CompileFunctionInContext() local 2372 line_offset = static_cast<int>(source->resource_line_offset->Value()); in CompileFunctionInContext() 2382 eval_scope_position, eval_position, line_offset, in CompileFunctionInContext() 9157 return Utils::OpenHandle(this)->line_offset(); in LineOffset() 9282 int line_offset = 0; in GetPossibleBreakpoints() local 9285 line_offset = GetSmiValue(line_ends, current_line_end_index - 1) + 1; in GetPossibleBreakpoints() [all …]
|
/external/tensorflow/tensorflow/compiler/xla/tools/parser/ |
D | hlo_lexer.cc | 334 size_t line_offset = StringPieceFromPointers(start, ptr).rfind('\n'); in GetLineAndColumn() local 335 if (line_offset == StringPiece::npos) { in GetLineAndColumn() 336 line_offset = 0; in GetLineAndColumn() 338 return {line_no, ptr - start - line_offset}; in GetLineAndColumn()
|
/external/kernel-headers/original/uapi/linux/ |
D | gpio.h | 50 __u32 line_offset; member
|
/external/swiftshader/third_party/LLVM/lib/DebugInfo/ |
D | DWARFDebugLine.cpp | 424 int32_t line_offset = prologue->LineBase + in parseStatementTable() local 426 state.Line += line_offset; in parseStatementTable()
|
/external/deqp/external/openglcts/modules/glesext/geometry_shader/ |
D | esextcGeometryShaderLimits.cpp | 1896 const unsigned int line_offset = y * line_size; in verifyResult() local 1897 const unsigned int first_texel_offset = line_offset + point_offset; in verifyResult() 2213 const unsigned int line_offset = y * line_size; in verifyResult() local 2217 const unsigned int texel_offset = line_offset + x * m_texture_pixel_size; in verifyResult() 2522 const unsigned int line_offset = y * line_size; in verifyResult() local 2523 const unsigned int first_texel_offset = line_offset + point_offset; in verifyResult() 3287 const unsigned int line_offset = y * line_size; in verifyResult() local 3288 const unsigned int first_texel_offset = line_offset + point_offset; in verifyResult()
|
/external/v8/src/debug/ |
D | debug.js | 333 if (!(script.line_offset <= this.line_ && 334 this.line_ < script.line_offset + %ScriptLineCount(script))) { 356 var source_line = %ScriptSourceLine(script, line || script.line_offset);
|
/external/python/cpython2/Lib/test/ |
D | test_sys_settrace.py | 259 def compare_events(self, line_offset, events, expected_events): argument 260 events = [(l - line_offset, e) for (l, e) in events]
|
/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugLine.cpp | 497 int32_t line_offset = in parse() local 499 State.Row.Line += line_offset; in parse()
|
/external/python/cpython3/Lib/test/ |
D | test_sys_settrace.py | 260 def compare_events(self, line_offset, events, expected_events): argument 261 events = [(l - line_offset, e) for (l, e) in events]
|
/external/deqp/external/openglcts/modules/glesext/texture_cube_map_array/ |
D | esextcTextureCubeMapArrayColorDepthAttachments.cpp | 150 const glw::GLuint line_offset = y * line_size; in verifyImage() local 154 const glw::GLuint pixel_offset = line_offset + x * N_Components; in verifyImage()
|
/external/deqp/external/openglcts/modules/gl/ |
D | gl4cStencilTexturingTests.cpp | 1041 const GLuint line_offset = line_size * y; in prepareSourceTextureData() local 1055 GLubyte* pixel_data = &texture_data[0] + line_offset + pixel_offset; in prepareSourceTextureData()
|
D | gl4cCopyImageTests.cpp | 3197 const GLuint line_offset = line_size * y; in prepareSrcPxls() local 3199 GLubyte* line = layer + line_offset; in prepareSrcPxls() 3735 const GLuint line_offset = y * line_size; in compareImages() local 3738 const GLubyte* left_line_data = left_data + line_offset; in compareImages() 3739 const GLubyte* right_line_data = right_data + line_offset; in compareImages() 4032 const GLuint line_offset = line_size * y; in prepareSrcPxls() local 4034 GLubyte* line_data = layer_data + line_offset; in prepareSrcPxls()
|
D | gl4cShaderSubroutineTests.cpp | 5745 const GLuint line_offset = y * m_texture_width * 4; in fillTexture() local 5749 const GLuint point_offset = x * 4 + line_offset; in fillTexture() 5820 const GLuint line_offset = y * m_texture_width * 4; in testDraw() local 5824 const GLuint point_offset = x * 4 + line_offset; in testDraw() 5928 const GLuint line_offset = y * m_texture_width * 4; in fillTexture() local 5932 const GLuint point_offset = x * 4 + line_offset; in fillTexture() 6561 const GLuint line_offset = y * m_texture_width * 4; in verifyTexture() local 6565 const GLuint point_offset = line_offset + x * 4; in verifyTexture()
|
D | gl4cShaderImageLoadStoreTests.cpp | 7614 const GLuint line_offset = y * edge * n_components + layer_offset; in CreateRGBA8SourceTexture() local 7620 const GLuint texel_offset = x * n_components + line_offset; in CreateRGBA8SourceTexture() 8178 const GLuint line_offset = y * m_texture_edge * n_components; in CheckIfTextureWasModified() local 8182 const GLuint texel_offset = x * n_components + line_offset; in CheckIfTextureWasModified() 8295 const GLuint line_offset = y * m_texture_edge * n_components; in Create2DRGBA8CompleteTexture() local 8299 const GLuint texel_offset = x * n_components + line_offset; in Create2DRGBA8CompleteTexture() 8376 const GLuint line_offset = y * m_texture_edge * n_components; in Create2DRGBA8IncompleteTexture() local 8380 const GLuint texel_offset = x * n_components + line_offset; in Create2DRGBA8IncompleteTexture()
|
D | gl4cMultiBindTests.cpp | 4239 const size_t line_offset = j * width; in iterate() local 4241 data[line_offset] = 1; in iterate() 4242 data[line_offset + last_pixel_in_line_offset] = 1; in iterate()
|
/external/v8/src/runtime/ |
D | runtime-debug.cc | 1663 line = NumberToInt32(*opt_line) - script->line_offset(); in ScriptLocationFromLine() 1789 line -= script_handle->line_offset(); in RUNTIME_FUNCTION()
|
/external/elfutils/src/ |
D | readelf.c | 7363 Dwarf_Off line_offset = -1; in print_debug_macro_section() local 7367 line_offset = read_8ubyte_unaligned_inc (dbg, readp); in print_debug_macro_section() 7369 line_offset = read_4ubyte_unaligned_inc (dbg, readp); in print_debug_macro_section() 7371 line_offset); in print_debug_macro_section() 7457 if (line_offset != (Dwarf_Off) -1) in print_debug_macro_section() 7460 while (cu != NULL && line_offset != cu->offset) in print_debug_macro_section()
|