Searched defs:error (Results 1 - 2 of 2) sorted by relevance

/build/tools/rgb2565/
H A Dto565.c48 int* error = malloc((width+2) * 3 * sizeof(int)); local
50 memset(error, 0, (width+2) * 3 * sizeof(int));
52 error += 3; // array goes from [-3..((width+1)*3+2)]
56 int r = in[0] + error[i*3+0];
59 int g = in[1] + error[i*3+1];
62 int b = in[2] + error[i*3+2];
72 error[(i+1)*3+ch] += e - ((e*1/16) + (e*3/16) + (e*5/16)); \
88 // error <- next_error; next_error <- 0
89 int* temp = error; error
[all...]
/build/tools/atree/
H A Dfiles.cpp130 bool* error) {
160 *error = true;
225 fprintf(stderr, "error reading file %s. (%s)\n",
287 bool error = false; local
288 paths[pcount++] = replace_variables(word, variables, &error);
289 if (error) {
128 replace_variables(const string& input, const map<string, string>& variables, bool* error) argument

Completed in 88 milliseconds