HomeSort by relevance Sort by last modified time
    Searched defs:error (Results 476 - 500 of 2948) sorted by null

<<11121314151617181920>>

  /external/eigen/bench/btl/actions/
action_ata_product.hh 114 typename Interface::real_type error= local
117 if (error>1.e-6){
118 INFOS("WRONG CALCULATION...residual=" << error);
action_axpby.hh 100 typename Interface::real_type error= local
103 if (error>1.e-6){
104 INFOS("WRONG CALCULATION...residual=" << error);
action_axpy.hh 112 typename Interface::real_type error= local
115 if (error>1.e-6){
116 INFOS("WRONG CALCULATION...residual=" << error);
action_matrix_matrix_product_bis.hh 125 typename Interface::real_type error= local
128 if (error>1.e-6){
129 INFOS("WRONG CALCULATION...residual=" << error);
action_trisolve.hh 112 typename Interface::real_type error= local
115 if (error>1.e-4){
116 INFOS("WRONG CALCULATION...residual=" << error);
118 } //else INFOS("CALCULATION OK...residual=" << error);
  /external/eigen/test/eigen2/
eigen2_regression.cpp 60 typename VectorType::Scalar error = (result - original).norm() / original.norm(); local
61 VERIFY(ei_abs(error) < ei_abs(tolerance));
75 typename VectorType::Scalar error = (result.coeffs() - original.coeffs()).norm() / original.coeffs().norm(); local
76 std::cout << ei_abs(error) << " xxx " << ei_abs(tolerance) << std::endl;
77 VERIFY(ei_abs(error) < ei_abs(tolerance));
  /external/elfutils/host-darwin-fixup/
AndroidFixup.h 59 static inline void __attribute__((noreturn)) error(int status, int errnum, const char *fmt, ...) function
64 fprintf(stderr, "error %d: %s\n", errnum, strerror(errno));
71 error(EXIT_FAILURE, 0, "%s not implemented!", __FUNCTION__);
  /external/elfutils/libdw/
dwarf_entry_breakpoints.c 95 int error = INTUSE (dwarf_errno) (); local
96 if (error == DWARF_E_NO_DEBUG_LINE)
98 __libdw_seterrno (error);
dwarf_getscopes.c 78 /* dwarf_haspc returns an error if there are no appropriate attributes.
85 int error = INTUSE(dwarf_errno) (); local
86 if (error != DWARF_E_NOERROR && error != DWARF_E_NO_DEBUG_RANGES)
88 __libdw_seterrno (error);
  /external/elfutils/libdwfl/
dwfl_module_getsrc_file.c 76 Dwfl_Error error; local
77 while ((error = __libdwfl_nextcu (mod, cu, &cu)) == DWFL_E_NOERROR
79 && (error = __libdwfl_cu_getsrclines (cu)) == DWFL_E_NOERROR)
  /external/freetype/src/autofit/
afmodule.c 53 FT_Error error = FT_Err_Ok; local
65 error = af_face_globals_new( face, &globals, module );
66 if ( !error )
75 if ( !error )
78 return error;
87 FT_Error error = FT_Err_Ok; local
98 return error;
106 error = af_property_get_face_globals( prop->face, &globals, module );
107 if ( !error )
110 return error;
124 FT_Error error = FT_Err_Ok; local
    [all...]
  /external/freetype/src/base/
ftstream.c 60 FT_Error error = FT_Err_Ok; local
71 error = FT_THROW( Invalid_Stream_Operation );
81 error = FT_THROW( Invalid_Stream_Operation );
84 if ( !error )
87 return error;
124 FT_Error error = FT_Err_Ok; local
156 error = FT_THROW( Invalid_Stream_Operation );
159 return error;
197 FT_Error error; local
200 error = FT_Stream_EnterFrame( stream, count )
237 FT_Error error = FT_Err_Ok; local
726 FT_Error error; local
    [all...]
  /external/freetype/src/cache/
ftcmru.c 240 FT_Error error; local
255 error = list->clazz.node_reset( node, key, list->data );
256 if ( !error )
269 error = list->clazz.node_init( node, key, list->data );
270 if ( error )
278 return error;
  /external/icu4c/samples/layout/
ScriptCompositeFontInstance.cpp 89 UErrorCode error = U_ZERO_ERROR; local
91 le_int32 script = uscript_getScript(ch, &error);
  /external/libvorbis/lib/
lpc.c 64 double error; local
79 error=aut[0] * (1. + 1e-10);
85 if(error<epsilon){
96 r/=error;
98 /* Update LPC coefficients and total error */
109 error*=1.-r*r;
127 /* we need the error value to know how big an impulse to hit the
130 return error;
  /external/libvpx/libvpx/vp8/common/
textblit.c 65 int error, ystep, y, x; local
93 error = deltax / 2;
108 error = error - deltay;
109 if (error < 0)
112 error = error + deltax;
122 error = error - deltay;
123 if (error < 0
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
boolhuff.h 33 struct vpx_internal_error_info *error; member in struct:__anon21239
52 struct vpx_internal_error_info *error)
57 vpx_internal_error(error, VPX_CODEC_CORRUPT_FRAME,
113 validate_buffer(br->buffer + br->pos, 1, br->buffer_end, br->error);
  /external/libvpx/libvpx/vp9/common/
vp9_textblit.c 64 int error, ystep, y, x; local
90 error = deltax / 2;
103 error = error - deltay;
104 if (error < 0) {
106 error = error + deltax;
113 error = error - deltay;
114 if (error < 0)
    [all...]
  /external/llvm/tools/llvm-readobj/
llvm-readobj.cpp 24 #include "Error.h"
135 bool error(error_code EC) { function in namespace:llvm
146 if (error(a.getOffset(a_addr))) return false;
147 if (error(b.getOffset(b_addr))) return false;
  /external/mesa3d/src/glx/apple/
apple_glx_surface.c 64 xp_error error; local
71 error = xp_attach_gl_context(ac->context_obj, s->surface_id);
73 if (error) {
74 fprintf(stderr, "error: xp_attach_gl_context returned: %d\n", error);
101 xp_error error = xp_destroy_surface(s->surface_id); local
103 if (error) {
104 fprintf(stderr, "xp_destroy_surface error: %d\n", (int) error);
127 /* Return true if an error occured. *
144 xp_error error; local
    [all...]
  /external/mesa3d/src/glx/
applegl_glx.c 56 bool error = apple_glx_make_current_context(dpy, local
60 apple_glx_diagnostic("%s: error %s\n", __func__, error ? "YES" : "NO");
61 if (error)
73 bool error; local
85 error = apple_glx_make_current_context(dpy,
89 apple_glx_diagnostic("%s: error %s\n", __func__, error ? "YES" : "NO");
  /external/openssl/crypto/txt_db/
txt_db.h 89 long error; member in struct:txt_db_st
  /external/openssl/include/openssl/
txt_db.h 89 long error; member in struct:txt_db_st
  /external/oprofile/libpp/
populate_for_spu.cpp 55 bool ok = ip.error == image_ok;
82 if (!ok && ip.error == image_ok)
83 ip.error = image_format_failure;
85 if (ip.error == image_format_failure)
90 if (ip.error == image_ok) {
91 image_error error; local
94 fname_to_check, error, true);
  /external/oprofile/libutil++/
child_reader.h 41 /** fork a process. use error() to get error code. Do not try to
42 * use other public member interface if error() return non-zero */
68 /** return the status of the first error encoutered
69 * != 0 : something feel wrong, use error_str() to get an error
71 int error() const { return first_error; } function in class:child_reader
74 * return an error message if appropriate, if the process has
75 * been successfully exec'ed and is not terminate the error message
76 * is always empty. Error message is also empty if the child process
77 * terminate successfully. Else three type of error message exist
    [all...]

Completed in 339 milliseconds

<<11121314151617181920>>