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

<<21222324252627282930>>

  /external/harfbuzz_ng/src/hb-old/
harfbuzz-buffer.c 70 HB_Error error; local
78 return error;
82 return error;
87 return error;
98 return error;
113 HB_Error error; local
116 return error;
132 HB_Error error; local
135 return error;
177 HB_Error error; local
213 HB_Error error; local
275 HB_Error error; local
333 HB_Error error; local
357 HB_Error error; local
    [all...]
  /external/icu4c/extra/scrptrun/
scrptrun.cpp 115 UErrorCode error = U_ZERO_ERROR; local
142 UScriptCode sc = uscript_getScript(ch, &error);
  /external/icu4c/extra/uconv/
uwmsg.c 64 /* reset the error code */
248 char error[128]; local
251 sprintf(error, "UNDOCUMENTED ICU ERROR %d", err);
252 textMsg = error;
  /external/icu4c/samples/layout/
GnomeFontInstance.cpp 53 FT_Error error; local
58 error = FT_New_Face(engine, fontPathName, 0, &fFace);
60 if (error != 0) {
61 printf("OOPS! Got error code %d\n", error);
70 error = FT_Set_Char_Size(fFace, 0, pointSize << 6, 92, 92);
82 if (error != 0) {
146 FT_Error error; local
148 error = FT_Load_Glyph(fFace, glyph, FT_LOAD_DEFAULT);
150 if (error != 0)
160 FT_Error error; local
    [all...]
  /external/icu4c/test/cintltst/
stdnmtst.c 41 UErrorCode error; local
44 error = U_ZERO_ERROR;
45 tag = ucnv_getStandardName(name, standard, &error);
47 log_err_status(error, "FAIL: could not find %s standard name for %s\n", standard, name);
71 log_err("FAIL: ucnv_getStandard(%d), error=%s\n", i, u_errorName(err));
117 UErrorCode error; local
120 error = U_ZERO_ERROR;
121 tag = ucnv_getCanonicalName(name, standard, &error);
127 log_err_status(error, "FAIL: could not find %s canonical name for %s\n", (standard ? "\"\"" : standard), name);
197 log_err("FAIL: uenum_next(%d) == \"%s\". expected \"%s\", len=%d, error=%s\n"
    [all...]
  /external/ipsec-tools/src/racoon/
kmpstat.c 213 int error; local
220 error = getaddrinfo(name, port, &hint, &ai);
221 if (error != 0) {
222 printf("%s: %s/%s\n", gai_strerror(error), name, port);
  /external/javassist/src/main/javassist/util/proxy/
RuntimeSupport.java 70 error(self, name, desc); method
88 error(self, name, desc); method
93 private static void error(Object self, String name, String desc) { method in class:RuntimeSupport
  /external/libvpx/libvpx/test/
dct32x32_test.cc 121 const uint32_t error = diff * diff; local
122 if (max_error < error)
123 max_error = error;
124 total_error += error;
134 << "Error: 32x32 FDCT/IDCT has an individual round-trip error > 1";
137 << "Error: 32x32 FDCT/IDCT has average round-trip error > 1 per block";
159 << "Error: 32x32 FDCT versions have mismatched coefficients";
163 << "Error: 32x32 FDCT rd has mismatched coefficients"
236 const int error = diff * diff; local
    [all...]
idct8x8_test.cc 132 const int error = diff * diff; local
133 EXPECT_GE(1, error)
134 << "Error: 8x8 FDCT/IDCT has error " << error
vp8_fdct4x4_test.cc 107 << "Error: 4x4 FDCT has a sign bias > 1% for input range [-255, 255]";
132 << "Error: 4x4 FDCT has a sign bias > 10% for input range [-15, 15]";
155 const int error = diff * diff; local
156 if (max_error < error)
157 max_error = error;
158 total_error += error;
163 << "Error: FDCT/IDCT has an individual roundtrip error > 1";
166 << "Error: FDCT/IDCT has average roundtrip error > 1 per block"
    [all...]
  /external/libxml2/include/libxml/
xmlIO.h 41 * Returns an Input context or NULL in case or error
52 * Returns the number of bytes read or -1 in case of error
61 * Returns 0 or -1 in case of error
87 * Returns an Output context or NULL in case or error
98 * Returns the number of bytes written or -1 in case of error
108 * Returns 0 or -1 in case of error
135 int error; member in struct:_xmlParserInputBuffer
151 int error; member in struct:_xmlOutputBuffer
  /external/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileWrapper.cpp 73 std::string error; local
74 if(!DynamicLibrary::LoadLibraryPermanently("libopagent.so", &error)) {
77 << error << "\n");
  /external/llvm/lib/IR/
DataLayout.cpp 181 assert(!Str.empty() && "parse error, string can't be empty here");
188 /// Get an unsinged integer, including error checks.
191 bool error = R.getAsInteger(10, Result); (void)error; local
192 assert(!error && "not a number, or does not fit in an unsigned int");
  /external/llvm/utils/Misc/
zkill 21 error = lambda message: (_write_message('error', message), sys.exit(1)) variable
77 error('unable to get process table')
79 error('unable to get process table: %s' % err)
94 error('unable to get process table, no %r field.' % field[0])
129 error('unknown signal: %r' % name)
229 parser.error('invalid positional argument: %r' % arg)
258 error('refusing to kill all processes without --force')
  /external/llvm/utils/lit/lit/
LitConfig.py 59 '--error-exitcode=123']
132 def error(self, message): member in class:LitConfig
133 self._write_message('error', message)
  /external/mesa3d/src/glx/apple/
apple_glx_context.c 130 CGLError error; local
164 error = apple_cgl.create_context(ac->pixel_format_obj,
169 if (error) {
174 if (kCGLBadMatch == error) {
184 fprintf(stderr, "error: %s\n", apple_cgl.error_string(error));
247 fprintf(stderr, "error: while clearing drawable!\n");
263 fprintf(stderr, "error: destroying pixel format in %s\n", __func__);
268 fprintf(stderr, "error: destroying context_obj in %s\n", __func__);
280 /* Return true if an error occured. *
333 bool error = false; local
    [all...]
  /external/mesa3d/src/glx/
glxcurrent.c 149 #error Unknown threading method specified.
193 xError error; local
195 error.errorCode = errorCode;
196 error.resourceID = resource;
197 error.sequenceNumber = dpy->request;
198 error.type = X_Error;
199 error.majorCode = __glXSetupForCommand(dpy);
200 error.minorCode = minorCode;
201 _XError(dpy, &error);
263 * case of an error
    [all...]
  /external/opencv/cvaux/src/
cvlevmar.cpp 72 CvMat *error = 0; local
135 CV_CALL( error = cvCreateMat(numFunc,1, CV_64F) );
161 /* Compute error */
162 cvSub(observRes,resFunc,error);
165 /* Need to use new version of computing error (norm) */
171 /* Define optimal delta for J'*J*delta=J'*error */
177 /* compute J'*error */
179 cvmMul(matrJt,error,vectB);
238 cvReleaseMat(&error);
cvmorphing.cpp 294 CvStatus error; local
325 error = icvMorphEpilines8uC3( &(first_pix[currFirstPix]),
337 if( error != CV_NO_ERR )
  /external/openssl/crypto/bn/
bn_blind.c 347 unsigned long error = ERR_peek_last_error(); local
348 if (ERR_GET_REASON(error) == BN_R_NO_INVERSE)
  /external/openssl/crypto/pem/
pem_info.c 98 long len,error=0; local
123 error=ERR_GET_REASON(ERR_peek_last_error());
124 if (error == PEM_R_NO_START_LINE)
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_bootstrap_unittest.cc 134 string error; local
138 &output_directory, &error));
141 &output_directory, &error));
  /external/protobuf/src/google/protobuf/testing/
file.cc 76 int error = ferror(file); local
78 return error == 0;
118 // We don't care too much about error checking here since this is only used
  /external/qemu/android/utils/
lineinput.c 21 int error; member in struct:LineInput
31 /* Error codes returned by the internal line reading function(s) */
100 if (input->error) {
122 input->error = errno;
143 /* Return the error condition of a LineInput object.
150 return input->error;
186 /* We either reached the end of file or an i/o error occured.
241 input->error = errno;
  /external/qemu/distrib/sdl-1.2.15/src/
SDL_error.c 24 /* Simple error handling in SDL */
29 /* Routine to get the thread-specific error variable */
31 /* The SDL_arraysize(The ),default (non-thread-safe) global error variable */
53 SDL_error *error; local
55 /* Copy in the key, mark error as valid */
56 error = SDL_GetErrBuf();
57 error->error = 1;
58 SDL_strlcpy((char *)error->key, fmt, sizeof(error->key))
120 SDL_error *error; local
196 SDL_error *error; local
    [all...]

Completed in 963 milliseconds

<<21222324252627282930>>