Home
last modified time | relevance | path

Searched refs:new_format (Results 1 - 12 of 12) sorted by relevance

/third_party/skia/third_party/externals/freetype/src/winfonts/
H A Dwinfnt.c213 FT_Bool new_format; in fnt_font_load() local
235 new_format = FT_BOOL( font->header.version == 0x300 ); in fnt_font_load()
236 size = new_format ? 148 : 118; in fnt_font_load()
1008 FT_Bool new_format; in FNT_Load_Glyph() local
1033 new_format = FT_BOOL( font->header.version == 0x300 ); in FNT_Load_Glyph()
1034 len = new_format ? 6 : 4; in FNT_Load_Glyph()
1037 offset = ( new_format ? 148 : 118 ) + len * glyph_index; in FNT_Load_Glyph()
1039 if ( offset >= font->header.file_size - 2 - ( new_format ? 4 : 2 ) ) in FNT_Load_Glyph()
1051 if ( new_format ) in FNT_Load_Glyph()
/third_party/python/Lib/multiprocessing/
H A Dshared_memory.py451 new_format = self._types_mapping[type(value)]
461 new_format = current_format
463 new_format = self._types_mapping[str] % (
469 new_format,
472 struct.pack_into(new_format, self.shm.buf, offset, encoded_value)
/third_party/mesa3d/src/gallium/drivers/zink/
H A Dzink_state.c82 enum pipe_format new_format = zink_decompose_vertex_format(elem->src_format); in zink_create_vertex_elements_state() local
83 assert(new_format); in zink_create_vertex_elements_state()
85 assert(screen->format_props[new_format].bufferFeatures & VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT); in zink_create_vertex_elements_state()
86 if (util_format_get_blocksize(new_format) == 4) in zink_create_vertex_elements_state()
88 else if (util_format_get_blocksize(new_format) == 2) in zink_create_vertex_elements_state()
92 format = zink_get_format(screen, new_format); in zink_create_vertex_elements_state()
H A Dzink_format.c156 enum pipe_format new_format; in zink_decompose_vertex_format() local
195 return new_format; in zink_decompose_vertex_format()
H A Dzink_screen.c1193 enum pipe_format new_format = zink_decompose_vertex_format(format); in zink_is_format_supported() local
1194 if (!new_format) in zink_is_format_supported()
1196 if (!(screen->format_props[new_format].bufferFeatures & VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT)) in zink_is_format_supported()
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-layout-gpos-table.hh178 unsigned int new_format = 0; in get_effective_format() local
181 new_format = new_format | get_effective_format (&values); in get_effective_format()
183 return new_format; in get_effective_format()
187 unsigned int new_format, in copy_values()
195 if (format & xPlacement) copy_value (c, new_format, xPlacement, *values++); in copy_values()
196 if (format & yPlacement) copy_value (c, new_format, yPlacement, *values++); in copy_values()
197 if (format & xAdvance) copy_value (c, new_format, xAdvance, *values++); in copy_values()
198 if (format & yAdvance) copy_value (c, new_format, yAdvance, *values++); in copy_values()
207 unsigned int new_format, in copy_value()
1021 ValueFormat new_format = src->get_value_format (); serialize() local
[all...]
/third_party/icu/icu4c/source/i18n/
H A 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()
/third_party/node/deps/icu-small/source/i18n/
H A Dmsgfmt.cpp744 Format* new_format = newFormat.clone(); in setFormat() local
745 if (new_format) { in setFormat()
747 setCustomArgStartFormat(partIndex, new_format, status); in setFormat()
794 Format* new_format = newFormat.clone(); in setFormat() local
795 if (new_format == nullptr) { in setFormat()
799 setCustomArgStartFormat(partIndex, new_format, status); in setFormat()
/third_party/skia/third_party/externals/icu/source/i18n/
H A 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()
/third_party/libphonenumber/cpp/src/phonenumbers/
H A Dphonenumberutil.cc1670 NumberFormat new_format; in FormatOutOfCountryKeepingAlphaChars() local
1671 new_format.MergeFrom(*formatting_pattern); in FormatOutOfCountryKeepingAlphaChars()
1674 new_format.set_pattern("(\\d+)(.*)"); in FormatOutOfCountryKeepingAlphaChars()
1677 new_format.set_format("$1$2"); in FormatOutOfCountryKeepingAlphaChars()
1684 FormatNsnUsingPattern(raw_input_copy, new_format, NATIONAL, in FormatOutOfCountryKeepingAlphaChars()
/third_party/mesa3d/src/mesa/main/
H A Dvarray.c655 struct gl_vertex_format new_format; in _mesa_update_array_format() local
660 _mesa_set_vertex_format(&new_format, size, type, format, in _mesa_update_array_format()
664 !memcmp(&new_format, &array->Format, sizeof(new_format))) in _mesa_update_array_format()
668 array->Format = new_format; in _mesa_update_array_format()
/third_party/ffmpeg/fftools/
H A Dffplay.c825 static int realloc_texture(SDL_Texture **texture, Uint32 new_format, int new_width, int new_height, SDL_BlendMode blendmode, int init_texture) in realloc_texture() argument
829 if (!*texture || SDL_QueryTexture(*texture, &format, &access, &w, &h) < 0 || new_width != w || new_height != h || new_format != format) { in realloc_texture()
834 if (!(*texture = SDL_CreateTexture(renderer, new_format, SDL_TEXTUREACCESS_STREAMING, new_width, new_height))) in realloc_texture()
844 av_log(NULL, AV_LOG_VERBOSE, "Created %dx%d texture with %s.\n", new_width, new_height, SDL_GetPixelFormatName(new_format)); in realloc_texture()

Completed in 34 milliseconds