HomeSort by relevance Sort by last modified time
    Searched defs:debug_info (Results 1 - 25 of 40) sorted by null

1 2

  /external/tensorflow/tensorflow/core/kernels/
cuda_solvers.h 164 const string& debug_info, bool on_host);
166 ScratchSpace<Scalar> GetScratchSpace(int64 size, const string& debug_info,
171 const string& debug_info);
330 ScratchSpace(OpKernelContext* context, int64 size, const string& debug_info,
332 : ScratchSpace(context, TensorShape({size}), debug_info, on_host) {}
335 const string& debug_info, bool on_host)
336 : context_(context), debug_info_(debug_info), on_host_(on_host) {
364 const string& debug_info() const { return debug_info_; } function in class:tensorflow::ScratchSpace
384 HostLapackInfo(OpKernelContext* context, int64 size, const string& debug_info)
385 : ScratchSpace<int>(context, size, debug_info, /* on_host */ true){}
    [all...]
  /external/vboot_reference/tests/
tlcl_tests.c 24 static char debug_info[4096]; variable
50 *debug_info = 0;
vboot_display_tests.c 31 static char debug_info[4096]; variable
85 *debug_info = 0;
92 strncpy(debug_info, info_str, sizeof(debug_info));
93 debug_info[sizeof(debug_info) - 1] = '\0';
140 TEST_NEQ(*debug_info, '\0', "Some debug info was displayed");
176 TEST_EQ(*debug_info, '\0', "DisplayKey q = does nothing");
181 TEST_NEQ(*debug_info, '\0', "DisplayKey tab = display");
  /toolchain/binutils/binutils-2.27/gold/
reduced_debug_output.cc 255 unsigned char* debug_info = this->postprocessing_buffer(); local
261 while (debug_info < debug_info_end)
263 uint32_t compile_unit_start = read_from_pointer<32>(&debug_info);
271 if (0 != read_from_pointer<32>(&debug_info))
279 if (debug_info + dwarf64_header_size >= debug_info_end)
281 this->failed(_("Debug info extends beyond .debug_info section;"
286 uint64_t compile_unit_size = read_from_pointer<64>(&debug_info);
287 next_compile_unit = debug_info + compile_unit_size;
288 uint16_t version = read_from_pointer<16>(&debug_info);
289 uint64_t abbrev_offset = read_from_pointer<64>(&debug_info);
    [all...]
  /tools/dexter/slicer/export/slicer/
writer.h 140 debug_info(dex::kDebugInfoItem),
159 Section debug_info; member in struct:dex::Writer::DexImage
dex_ir.h 235 DebugInfo* debug_info; member in struct:ir::Code
374 std::vector<own<DebugInfo>> debug_info; member in struct:ir::DexFile
455 void Track(DebugInfo* p) { PushOwn(debug_info, p); }
  /external/libmojo/third_party/jinja2/
environment.py 1049 def debug_info(self): member in class:Template
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/
placer.cc 341 string debug_info = DebugInfo(node_root); local
372 debug_info, "\nRegistered kernels:\n",
377 node->requested_device(), debug_info);
389 "'", debug_info);
    [all...]
  /external/python/cpython2/Lib/multiprocessing/
managers.py 153 'debug_info', 'number_of_objects', 'dummy', 'incref', 'decref']
317 def debug_info(self, c): member in class:Server
584 return dispatch(conn, None, 'debug_info')
    [all...]
  /external/v8/src/
perf-jit.cc 291 PerfJitCodeDebugInfo debug_info; local
293 debug_info.event_ = PerfJitCodeLoad::kDebugInfo;
294 debug_info.time_stamp_ = GetTimestamp();
295 debug_info.address_ = reinterpret_cast<uint64_t>(code->instruction_start());
296 debug_info.entry_count_ = entry_count;
298 uint32_t size = sizeof(debug_info);
315 debug_info.size_ = size + padding;
316 LogWriteBytes(reinterpret_cast<const char*>(&debug_info), sizeof(debug_info));
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
managers.py 153 'debug_info', 'number_of_objects', 'dummy', 'incref', 'decref']
317 def debug_info(self, c): member in class:Server
584 return dispatch(conn, None, 'debug_info')
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
managers.py 153 'debug_info', 'number_of_objects', 'dummy', 'incref', 'decref']
317 def debug_info(self, c): member in class:Server
584 return dispatch(conn, None, 'debug_info')
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 153 'debug_info', 'number_of_objects', 'dummy', 'incref', 'decref']
317 def debug_info(self, c): member in class:Server
584 return dispatch(conn, None, 'debug_info')
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 153 'debug_info', 'number_of_objects', 'dummy', 'incref', 'decref']
317 def debug_info(self, c): member in class:Server
584 return dispatch(conn, None, 'debug_info')
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
libecoff.h 118 struct ecoff_debug_info debug_info; member in struct:ecoff_tdata
  /toolchain/binutils/binutils-2.27/binutils/
dwarf.h 52 /* Structure found in .debug_info section. */
152 we extract from the.debug_info section. */
171 /* List of .debug_ranges offsets seen in this .debug_info. */
176 debug_info; typedef in typeref:struct:__anon4149
  /art/dexlayout/
dex_ir.cc 586 DebugInfoItem* debug_info = nullptr; local
588 debug_info = debug_info_items_map_.GetExistingObject(debug_info_offset);
589 if (debug_info == nullptr) {
593 debug_info = new DebugInfoItem(debug_info_size, debug_info_buffer);
594 AddItem(debug_info_items_map_, debug_info_items_, debug_info, debug_info_offset);
683 debug_info,
    [all...]
dexlayout.cc 1132 dex_ir::DebugInfoItem* debug_info = code->DebugInfo(); local
    [all...]
  /external/libopus/tests/
test_opus_encode.c 143 void test_encode(OpusEncoder *enc, int channels, int frame_size, OpusDecoder *dec, const char* debug_info)
163 fprintf(stderr,"%s\n",debug_info);
170 fprintf(stderr,"%s\n",debug_info);
208 char debug_info[512]; local
239 sprintf(debug_info,
262 test_encode(enc, num_channels, frame_size, dec, debug_info);
  /external/python/cpython3/Lib/multiprocessing/
managers.py 130 'debug_info', 'number_of_objects', 'dummy', 'incref', 'decref']
312 def debug_info(self, c): member in class:Server
576 return dispatch(conn, None, 'debug_info')
    [all...]
  /external/v8/src/debug/
debug.h 70 static BreakLocation FromFrame(Handle<DebugInfo> debug_info,
73 static void AllAtCurrentStatement(Handle<DebugInfo> debug_info,
87 bool HasBreakPoint(Handle<DebugInfo> debug_info) const;
101 static int BreakIndexFromCodeOffset(Handle<DebugInfo> debug_info,
120 Handle<DebugInfo> debug_info, Handle<AbstractCode> abstract_code);
142 explicit BreakIterator(Handle<DebugInfo> debug_info);
160 explicit CodeBreakIterator(Handle<DebugInfo> debug_info);
192 explicit BytecodeArrayBreakIterator(Handle<DebugInfo> debug_info);
218 explicit DebugInfoListNode(DebugInfo* debug_info);
223 Handle<DebugInfo> debug_info() { return Handle<DebugInfo>(debug_info_); function in class:v8::internal::DebugInfoListNode
    [all...]
  /external/v8/src/wasm/
wasm-objects.cc 400 DEFINE_OPTIONAL_OBJ_ACCESSORS(WasmInstanceObject, debug_info, kDebugInfo,
413 if (instance->has_debug_info()) return handle(instance->debug_info());
712 Handle<WasmDebugInfo> debug_info = local
735 WasmDebugInfo::SetBreakpoint(debug_info, func_index, offset_in_func);
1136 Handle<WasmDebugInfo> debug_info = local
    [all...]
  /external/v8/src/builtins/arm/
builtins-arm.cc 1037 Register debug_info = kInterpreterBytecodeArrayRegister; local
    [all...]
  /external/v8/src/builtins/arm64/
builtins-arm64.cc 1040 Register debug_info = kInterpreterBytecodeArrayRegister; local
    [all...]
  /external/v8/src/builtins/ia32/
builtins-ia32.cc 662 Register debug_info = kInterpreterBytecodeArrayRegister; local
663 __ mov(debug_info, FieldOperand(eax, SharedFunctionInfo::kDebugInfoOffset));
665 FieldOperand(debug_info, DebugInfo::kDebugBytecodeArrayIndex));
    [all...]

Completed in 820 milliseconds

1 2