HomeSort by relevance Sort by last modified time
    Searched defs:info (Results 951 - 975 of 3477) sorted by null

<<31323334353637383940>>

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/listfmts/nasm/
nasm-listfmt.c 85 /*@null@*/ nasm_listfmt_output_info *info = (nasm_listfmt_output_info *)d; local
89 assert(info != NULL);
93 info->arch)) {
103 if (info->next_reloc && info->next_reloc_addr == bc->offset+offset) {
108 STAILQ_INSERT_TAIL(&info->bcrelocs, reloc, link);
110 /* Get next reloc's info */
111 info->next_reloc = yasm_section_reloc_next(info->next_reloc);
112 if (info->next_reloc)
151 nasm_listfmt_output_info info; local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/
win64-except.c 96 coff_unwind_info *info = yasm_xmalloc(sizeof(coff_unwind_info)); local
97 info->proc = NULL;
98 info->prolog = NULL;
99 info->ehandler = NULL;
100 info->framereg = 0;
102 yasm_value_initialize(&info->frameoff, NULL, 8);
103 SLIST_INIT(&info->codes);
104 yasm_value_initialize(&info->prolog_size, NULL, 8);
105 yasm_value_initialize(&info->codes_count, NULL, 8);
106 return info;
208 coff_unwind_info *info = (coff_unwind_info *)bc->contents; local
225 coff_unwind_info *info = (coff_unwind_info *)bc->contents; local
257 coff_unwind_info *info = (coff_unwind_info *)bc->contents; local
286 coff_unwind_info *info = (coff_unwind_info *)bc->contents; local
    [all...]
  /external/chromium_org/tools/gn/
command_args.cc 171 SHELLEXECUTEINFO info; local
172 memset(&info, 0, sizeof(info));
173 info.cbSize = sizeof(info);
174 info.fMask = SEE_MASK_NOCLOSEPROCESS | SEE_MASK_CLASSNAME;
175 info.lpFile = file_to_edit.value().c_str();
176 info.nShow = SW_SHOW;
177 info.lpClass = L".txt";
178 if (!::ShellExecuteEx(&info)) {
    [all...]
  /external/chromium_org/ui/events/
latency_info.cc 66 // This class is for converting latency info to trace buffer friendly format.
194 LatencyComponent info = {component_sequence_number, time, event_count}; local
195 latency_components[key] = info;
  /external/chromium_org/ui/events/ozone/evdev/
touch_event_converter_evdev.cc 79 const EventDeviceInfo& info,
87 Init(info);
95 void TouchEventConverterEvdev::Init(const EventDeviceInfo& info) {
102 pressure_min_ = info.GetAbsMinimum(ABS_MT_PRESSURE),
103 pressure_max_ = info.GetAbsMaximum(ABS_MT_PRESSURE),
104 x_min_tuxels_ = info.GetAbsMinimum(ABS_MT_POSITION_X),
105 x_num_tuxels_ = info.GetAbsMaximum(ABS_MT_POSITION_X) - x_min_tuxels_ + 1,
106 y_min_tuxels_ = info.GetAbsMinimum(ABS_MT_POSITION_Y),
107 y_num_tuxels_ = info.GetAbsMaximum(ABS_MT_POSITION_Y) - y_min_tuxels_ + 1,
148 EventDeviceInfo info; local
    [all...]
  /external/chromium_org/ui/ozone/platform/dri/
dri_surface_factory.cc 79 SkImageInfo info = SkImageInfo::MakeN32( local
81 surface_ = skia::AdoptRef(SkSurface::NewRaster(info));
  /external/chromium_org/v8/src/
lithium-codegen.h 22 CompilationInfo* info);
27 CompilationInfo* info() const { return info_; } function in class:v8::internal::BASE_EMBEDDED
optimizing-compiler-thread.cc 119 CompilationInfo* info = job->info(); local
121 if (info->is_osr()) {
124 Handle<Code> code = info->unoptimized_code();
125 uint32_t offset = code->TranslateAstIdToPcOffset(info->osr_ast_id());
129 Handle<JSFunction> function = info->closure();
133 delete info;
144 if (!job->info()->is_osr()) {
155 if (!job->info()->is_osr()) {
225 CompilationInfo* info = job->info() local
255 CompilationInfo* info = job->info(); local
346 CompilationInfo* info = stale->info(); local
    [all...]
safepoint-table.cc 107 DeoptimizationInfo info; local
108 info.pc = assembler->pc_offset();
109 info.arguments = arguments;
110 info.has_doubles = (kind & Safepoint::kWithDoubles);
111 deoptimization_info_.Add(info, zone_);
204 uint32_t SafepointTableBuilder::EncodeExceptPC(const DeoptimizationInfo& info,
207 encoding |= SafepointEntry::ArgumentsField::encode(info.arguments);
208 encoding |= SafepointEntry::SaveDoublesField::encode(info.has_doubles);
  /external/chromium_org/webkit/browser/appcache/
appcache.cc 299 AppCacheResourceInfo& info = infos->back(); local
300 info.url = iter->first;
301 info.is_master = iter->second.IsMaster();
302 info.is_manifest = iter->second.IsManifest();
303 info.is_intercept = iter->second.IsIntercept();
304 info.is_fallback = iter->second.IsFallback();
305 info.is_foreign = iter->second.IsForeign();
306 info.is_explicit = iter->second.IsExplicit();
307 info.size = iter->second.response_size();
308 info.response_id = iter->second.response_id()
    [all...]
  /external/chromium_org/webkit/browser/fileapi/
native_file_util.cc 196 base::File::Info* file_info) {
248 base::File::Info info; local
249 base::File::Error error = NativeFileUtil::GetFileInfo(src_path, &info);
252 if (info.is_directory)
254 base::Time last_modified = info.last_modified;
256 error = NativeFileUtil::GetFileInfo(dest_path, &info);
260 if (info.is_directory)
263 error = NativeFileUtil::GetFileInfo(dest_path.DirName(), &info);
266 if (!info.is_directory
    [all...]
  /external/clang/lib/ARCMigrate/
TransProtectedScope.cpp 150 CaseInfo &info = Cases[i]; local
151 if (isInRange(Diag.getLocation(), info.Range)) {
153 if (info.State == CaseInfo::St_Unchecked)
154 tryFixing(info);
155 assert(info.State != CaseInfo::St_Unchecked);
157 if (info.State == CaseInfo::St_Fixed) {
168 void tryFixing(CaseInfo &info) {
169 assert(info.State == CaseInfo::St_Unchecked);
170 if (hasVarReferencedOutside(info)) {
171 info.State = CaseInfo::St_CannotFix
    [all...]
  /external/clang/utils/TableGen/
ClangSACheckersEmitter.cpp 113 GroupInfo &info = groupInfoByName[fullName]; local
114 info.Hidden = isHidden(*R);
115 recordGroupMap[R] = &info;
125 GroupInfo &info = groupInfoByName[name]; local
126 recordGroupMap[R] = &info;
143 GroupInfo &info = groupInfoByName[fullName]; local
144 info.Hidden = R->getValueAsBit("Hidden");
145 recordGroupMap[R] = &info;
146 info.Checkers.insert(R);
  /external/compiler-rt/lib/dfsan/
dfsan.cc 214 const dfsan_label_info *info = dfsan_get_label_info(label); local
215 if (info->l1 != 0) {
216 return dfsan_has_label(info->l1, elem) || dfsan_has_label(info->l2, elem);
224 const dfsan_label_info *info = dfsan_get_label_info(label); local
225 if (info->l1 != 0) {
226 return dfsan_has_label_with_desc(info->l1, desc) ||
227 dfsan_has_label_with_desc(info->l2, desc);
229 return internal_strcmp(desc, info->desc) == 0;
  /external/deqp/framework/platform/X11/
tcuX11.cpp 116 XVisualInfo info; local
118 if (getVisualInfo(visualID, info))
119 return info.visual;
139 XVisualInfo info = XVisualInfo(); local
140 bool succ = display.getVisualInfo(XVisualIDFromVisual(visual), info);
144 root = RootWindow(dpy, info.screen);
  /external/deqp/framework/platform/win32/
tcuWin32GLES3Platform.cpp 111 const wgl::PixelFormatInfo info = wgl.getPixelFormatInfo(deviceCtx, pixelFormat); local
115 tcu::PixelFormat(info.redBits, info.greenBits, info.blueBits, info.alphaBits),
116 info.depthBits, info.stencilBits,
117 info.sampleBuffers ? info.samples : 0);
  /external/dhcpcd/
common.c 169 static struct mach_timebase_info info = { 0, 0 }; local
175 if (mach_timebase_info(&info) == KERN_SUCCESS) {
176 factor = (double)info.numer / (double)info.denom;
182 if ((info.denom != 1 || info.numer != 1) && factor != 0.0)
  /external/doclava/src/com/google/doclava/
AnnotationValueInfo.java 77 for (AnnotationValueInfo info : values) {
78 str.append(info.valueString());
79 if (info != values.get(values.size()-1)) {
  /external/e2fsprogs/e2fsck/
mtrace.h 135 } info; member in struct:__anon24256::__anon24257
160 /* Limit of valid info table indices. */
  /external/e2fsprogs/ext2ed/
dir_com.c 82 struct struct_file_info search_dir_entries (int (*action) (struct struct_file_info *info),int *status)
100 struct struct_file_info info; /* Temporary variables used to */ local
104 info=first_file_info; /* Start from the first entry - Read it */
105 low_read (info.buffer,file_system_info.block_size,info.global_block_offset);
106 dir_entry_ptr=(struct ext2_dir_entry_2 *) (info.buffer+info.dir_entry_offset);
108 while (info.file_offset < info.file_length) { /* While we haven't reached the end */
110 *status=return_code=action (&info); /* Call the client function to test *
220 struct struct_file_info info; local
346 struct struct_file_info info; local
    [all...]
  /external/eigen/Eigen/src/Eigenvalues/
ComplexEigenSolver.h 217 ComputationInfo info() const function in class:Eigen::ComplexEigenSolver
220 return m_schur.info();
261 if(m_schur.info() == Success)
GeneralizedEigenSolver.h 251 ComputationInfo info() const function in class:Eigen::GeneralizedEigenSolver
254 return m_realQZ.info();
301 if (m_realQZ.info() == Success)
  /external/eigen/Eigen/src/PardisoSupport/
PardisoSupport.h 137 ComputationInfo info() const function in class:Eigen::PardisoImpl
  /external/eigen/bench/btl/libs/BLAS/
blas_interface_impl.hh 70 int info = 0; local
71 BLAS_FUNC(potrf)(&uplo, &N, C, &N, &info);
72 if(info!=0) std::cerr << "potrf_ error " << info << "\n"; local
79 int info = 0; local
81 BLAS_FUNC(getrf)(&N, &N, C, &N, ipiv, &info);
82 if(info!=0) std::cerr << "getrf_ error " << info << "\n"; local
105 int info = 0; local
108 BLAS_FUNC(getc2)(&N, C, &N, ipiv, jpiv, &info);
119 int info = 0; local
136 int info = 0; local
    [all...]
  /external/eigen/blas/
level2_impl.h 37 int info = 0; local
38 if(OP(*opa)==INVALID) info = 1;
39 else if(*m<0) info = 2;
40 else if(*n<0) info = 3;
41 else if(*lda<std::max(1,*m)) info = 6;
42 else if(*incb==0) info = 8;
43 else if(*incc==0) info = 11;
44 if(info)
45 return xerbla_(SCALAR_SUFFIX_UP"GEMV ",&info,6);
109 int info = 0 local
164 int info = 0; local
210 int info = 0; local
366 int info = 0; local
435 int info = 0; local
506 int info = 0; local
    [all...]

Completed in 951 milliseconds

<<31323334353637383940>>