Home
last modified time | relevance | path

Searched refs:new_format (Results 1 – 8 of 8) sorted by relevance

/external/ImageMagick/MagickWand/
Dwandcli.c278 new_format[MagickPathExtent]; in CLILogEvent() local
294 (void) FormatLocaleString(new_format,MagickPathExtent,cli_wand->location, in CLILogEvent()
296 (void) ConcatenateMagickString(new_format," ",MagickPathExtent); in CLILogEvent()
297 (void) ConcatenateMagickString(new_format,format,MagickPathExtent); in CLILogEvent()
300 status=LogMagickEventList(type,magick_module,function,line,new_format, in CLILogEvent()
326 new_format[MagickPathExtent]; in CLIThrowException() local
342 (void) CopyMagickString(new_format,format,MagickPathExtent); in CLIThrowException()
343 (void) ConcatenateMagickString(new_format," ",MagickPathExtent); in CLIThrowException()
345 len=strlen(new_format); in CLIThrowException()
346 (void) FormatLocaleString(new_format+len,MagickPathExtent-len, in CLIThrowException()
[all …]
/external/OpenCL-CTS/test_common/harness/
DerrorHelpers.h117 const char *new_format = format; in vlog_win32() local
125 new_format = temp; in vlog_win32()
137 vprintf(new_format, args); in vlog_win32()
140 if (new_format != format) { in vlog_win32()
141 free((void*)new_format); in vlog_win32()
/external/python/cpython3/Lib/multiprocessing/
Dshared_memory.py435 new_format = self._types_mapping[type(value)]
440 new_format = current_format
442 new_format = self._types_mapping[str] % (
448 new_format,
452 struct.pack_into(new_format, self.shm.buf, offset, value)
/external/freetype/src/winfonts/
Dwinfnt.c214 FT_Bool new_format; in fnt_font_load() local
232 new_format = FT_BOOL( font->header.version == 0x300 ); in fnt_font_load()
233 size = new_format ? 148 : 118; in fnt_font_load()
997 FT_Bool new_format; in FNT_Load_Glyph() local
1022 new_format = FT_BOOL( font->header.version == 0x300 ); in FNT_Load_Glyph()
1023 len = new_format ? 6 : 4; in FNT_Load_Glyph()
1026 offset = ( new_format ? 148 : 118 ) + len * glyph_index; in FNT_Load_Glyph()
1028 if ( offset >= font->header.file_size - 2 - ( new_format ? 4 : 2 ) ) in FNT_Load_Glyph()
1040 if ( new_format ) in FNT_Load_Glyph()
/external/u-boot/lib/
Dof_live.c56 int new_format = 0; in unflatten_dt_node() local
71 new_format = 1; in unflatten_dt_node()
100 if (new_format) { in unflatten_dt_node()
/external/tensorflow/tensorflow/lite/delegates/gpu/
Dapi.h85 OpenGlTexture(GLuint new_id, GLenum new_format) in OpenGlTexture()
86 : id(new_id), format(new_format) {} in OpenGlTexture()
/external/icu/icu4c/source/i18n/
Dmsgfmt.cpp743 Format* new_format = newFormat.clone(); in setFormat() local
744 if (new_format) { in setFormat()
746 setCustomArgStartFormat(partIndex, new_format, status); in setFormat()
793 Format* new_format = newFormat.clone(); in setFormat() local
794 if (new_format == NULL) { in setFormat()
798 setCustomArgStartFormat(partIndex, new_format, status); in setFormat()
/external/mesa3d/src/mesa/main/
Dvarray.c635 struct gl_vertex_format new_format; in _mesa_update_array_format() local
640 _mesa_set_vertex_format(&new_format, size, type, format, in _mesa_update_array_format()
644 !memcmp(&new_format, &array->Format, sizeof(new_format))) in _mesa_update_array_format()
648 array->Format = new_format; in _mesa_update_array_format()