Searched defs:converted (Results 51 - 55 of 55) sorted by path

123

/external/skia/src/animator/
H A DSkDisplayApply.cpp134 SkTypedArray converted; local
138 animator->packARGB(&values->fScalar, count, &converted);
139 values = converted.begin();
140 count = converted.count();
/external/srec/srec/EventLog/src/
H A Driff.c50 * - fills in *length with the number of samples converted
107 int converted = value; local
108 unsigned char *cp = (unsigned char *) & converted;
117 return converted;
122 short converted = value; local
123 unsigned char *cp = (unsigned char *) & converted;
129 return converted;
/external/svox/pico/tts/
H A Dsvox_ssml_parser.cpp596 char* converted = NULL; local
599 converted = new char[4];
600 if (!converted)
605 strcpy(converted, SSML_PITCH_XLOW);
609 converted = new char[4];
610 if (!converted)
615 strcpy(converted, SSML_PITCH_LOW);
619 converted = new char[4];
620 if (!converted)
625 strcpy(converted, SSML_PITCH_MEDIU
666 char* converted = NULL; local
736 char* converted = NULL; local
816 char* converted = NULL; local
[all...]
/external/valgrind/main/coregrind/
H A Dm_libcbase.c69 Bool neg = False, converted = False; local
81 converted = True; // Ok, we've actually converted a digit.
86 if (!converted) str = str0; // If nothing converted, endptr points to
94 Bool converted = False; local
106 converted = True; // Ok, we've actually converted a digit.
111 if (!converted) str = str0; // If nothing converted, endpt
119 Bool neg = False, converted = False; local
152 Bool converted = False; local
[all...]
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.cpp5313 (converted to signed char). Filtertype 0 isn't a difference though, so use unsigned there.
5708 unsigned char* converted; local
5711 converted = (unsigned char*)lodepng_malloc(size);
5712 if(!converted && size) state->error = 83; /*alloc fail*/
5715 state->error = lodepng_convert(converted, image, &info.color, &state->info_raw, w, h, 0 /*fix_png*/);
5717 if(!state->error) preProcessScanlines(&data, &datasize, converted, w, h, &info, &state->encoder);
5718 lodepng_free(converted);

Completed in 1552 milliseconds

123