Home
last modified time | relevance | path

Searched refs:format0 (Results 1 - 25 of 29) sorted by relevance

12

/third_party/icu/icu4c/source/test/intltest/
H A Dmiscdtfm.cpp167 UnicodeString format0; in test4099975()
168 format0 = df->format(d, format0); in test4099975()
175 if (format0 != format1) { in test4099975()
176 errln(UnicodeString("Formats are different. format0: ") + format0 in test4099975()
200 UnicodeString format0; in test4099975() local
201 format0 = df->format(d, format0); in test4099975()
208 if (format0 ! in test4099975()
260 UnicodeString format0; test4099975() local
[all...]
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-var-common.hh190 case 0: return_trace (u.format0.serialize (c, plan)); in serialize()
198 case 0: return (u.format0.map (v)); in map()
206 case 0: return u.format0.get_map_count (); in get_map_count()
215 case 0: return u.format0.get_width (); in get_width()
224 case 0: return u.format0.get_inner_bit_count (); in get_inner_bit_count()
235 case 0: return_trace (u.format0.sanitize (c)); in sanitize()
245 case 0: return_trace (reinterpret_cast<DeltaSetIndexMap *> (u.format0.copy (c))); in copy()
254 DeltaSetIndexMapFormat0 format0; member
H A Dhb-aat-layout-opbd-table.hh136 case 0: return u.format0.get_bounds (font, glyph_id, extents, this); in get_bounds()
150 case 0: return_trace (u.format0.sanitize (c, this)); in sanitize()
163 opbdFormat0 format0; member
H A Dhb-aat-layout-bsln-table.hh129 case 0: return_trace (parts.format0.sanitize (c)); in sanitize()
145 BaselineTableFormat0Part format0; member
H A Dhb-ot-cff1-table.hh248 case 0: size += u.format0.get_size (); break; in get_size()
260 case 0: return u.format0.get_code (glyph); in get_code()
284 case 0: if (unlikely (!u.format0.sanitize (c))) { return_trace (false); } break; in sanitize()
296 case 0: return StructAfter<CFF1SuppEncData> (u.format0.codes[u.format0.nCodes ()-1]); in suppEncData()
305 Encoding0 format0; member
515 case 0: return min_size + u.format0.get_size (num_glyphs); in get_size()
527 case 0: return u.format0.get_sid (glyph); in get_sid()
538 case 0: return u.format0.get_glyph (sid, num_glyphs); in get_glyph()
553 case 0: return_trace (u.format0 in sanitize()
562 Charset0 format0; global() member
[all...]
H A Dhb-ot-kern-table.hh124 case 0: return u.format0.get_kerning (left, right); in get_kerning()
135 case 0: return_trace (c->dispatch (u.format0)); in dispatch()
160 AAT::KerxSubTableFormat0<KernSubTableHeader> format0; member
H A Dhb-ot-cff2-table.hh67 case 0: return format.static_size + u.format0.get_size (num_glyphs); in get_size()
81 case 0: return u.format0.get_fd (glyph); in get_fd()
96 case 0: return_trace (u.format0.sanitize (c, fdcount)); in sanitize()
105 FDSelect0 format0; member
H A Dhb-aat-layout-common.hh348 case 0: return u.format0.get_value (glyph_id, num_glyphs); in get_value()
381 case 0: return_trace (u.format0.sanitize (c)); in sanitize()
395 case 0: return_trace (u.format0.sanitize (c, base)); in sanitize()
408 LookupFormat0<T> format0; member
H A Dhb-ot-cff-common.hh572 case 0: return format.static_size + u.format0.get_size (num_glyphs); in get_size()
584 case 0: return u.format0.get_fd (glyph); in get_fd()
598 case 0: return_trace (u.format0.sanitize (c, fdcount)); in sanitize()
606 FDSelect0 format0; member
H A Dhb-ot-cmap-table.hh1226 case 0: return u.format0 .get_glyph (codepoint, glyph); in get_glyph()
1239 case 0: u.format0 .collect_unicodes (out); return; in collect_unicodes()
1255 case 0: u.format0 .collect_mapping (unicodes, mapping); return; in collect_mapping()
1269 case 0: return u.format0 .get_language (); in get_language()
1301 case 0: return_trace (u.format0 .sanitize (c)); in sanitize()
1315 CmapSubtableFormat0 format0; member
H A Dhb-aat-layout-kerx-table.hh778 case 0: return_trace (c->dispatch (u.format0, std::forward<Ts> (ds)...)); in dispatch()
801 KerxSubTableFormat0<KerxSubTableHeader> format0; member
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/
H A DvktImageExtendedUsageBitTests.cpp43 bool isCompatibleCompressedFormat(VkFormat format0, VkFormat format1) in isCompatibleCompressedFormat() argument
45 DE_ASSERT(isCompressedFormat(format0) && isCompressedFormat(format1)); in isCompatibleCompressedFormat()
107 if (map.find(format1) != map.end() && map.find(format1)->second == format0) in isCompatibleCompressedFormat()
113 bool isCompatibleFormat(VkFormat format0, VkFormat format1) in isCompatibleFormat() argument
115 if (format0 == format1) in isCompatibleFormat()
119 if (!isDepthStencilFormat(format0) && !isCompressedFormat(format0) && in isCompatibleFormat()
121 mapVkFormat(format0).getPixelSize() == mapVkFormat(format1).getPixelSize()) in isCompatibleFormat()
124 if (isCompressedFormat(format0) && isCompressedFormat(format1) && in isCompatibleFormat()
125 isCompatibleCompressedFormat(format0, format in isCompatibleFormat()
[all...]
H A DvktImageMutableTests.cpp301 inline bool formatsAreCompatible (const VkFormat format0, const VkFormat format1) in formatsAreCompatible() argument
303 return format0 == format1 || mapVkFormat(format0).getPixelSize() == mapVkFormat(format1).getPixelSize(); in formatsAreCompatible()
H A DvktImageLoadStoreTests.cpp370 inline bool formatsAreCompatible (const VkFormat format0, const VkFormat format1) in formatsAreCompatible() argument
372 const bool isAlphaOnly = (isAlphaOnlyFormat(format0) || isAlphaOnlyFormat(format1)); in formatsAreCompatible()
373 return format0 == format1 || (mapVkFormat(format0).getPixelSize() == mapVkFormat(format1).getPixelSize() && !isAlphaOnly); in formatsAreCompatible()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/image/
H A DvktImageExtendedUsageBitTests.cpp43 bool isCompatibleCompressedFormat(VkFormat format0, VkFormat format1) in isCompatibleCompressedFormat() argument
45 DE_ASSERT(isCompressedFormat(format0) && isCompressedFormat(format1)); in isCompatibleCompressedFormat()
107 if (map.find(format1) != map.end() && map.find(format1)->second == format0) in isCompatibleCompressedFormat()
113 bool isCompatibleFormat(VkFormat format0, VkFormat format1) in isCompatibleFormat() argument
115 if (format0 == format1) in isCompatibleFormat()
119 if (!isDepthStencilFormat(format0) && !isCompressedFormat(format0) && in isCompatibleFormat()
121 mapVkFormat(format0).getPixelSize() == mapVkFormat(format1).getPixelSize()) in isCompatibleFormat()
124 if (isCompressedFormat(format0) && isCompressedFormat(format1) && in isCompatibleFormat()
125 isCompatibleCompressedFormat(format0, format in isCompatibleFormat()
[all...]
H A DvktImageMutableTests.cpp301 inline bool formatsAreCompatible (const VkFormat format0, const VkFormat format1) in formatsAreCompatible() argument
303 return format0 == format1 || mapVkFormat(format0).getPixelSize() == mapVkFormat(format1).getPixelSize(); in formatsAreCompatible()
/third_party/node/deps/v8/src/codegen/arm64/
H A Dinstructions-arm64.cc325 const NEONFormatMap* format0, in NEONFormatDecoder()
328 SetFormatMaps(format0, format1); in NEONFormatDecoder()
332 const NEONFormatMap* format0, in NEONFormatDecoder()
336 SetFormatMaps(format0, format1, format2); in NEONFormatDecoder()
339 void NEONFormatDecoder::SetFormatMaps(const NEONFormatMap* format0, in SetFormatMaps() argument
342 DCHECK_NOT_NULL(format0); in SetFormatMaps()
343 formats_[0] = format0; in SetFormatMaps()
324 NEONFormatDecoder(const Instruction* instr, const NEONFormatMap* format0, const NEONFormatMap* format1) NEONFormatDecoder() argument
331 NEONFormatDecoder(const Instruction* instr, const NEONFormatMap* format0, const NEONFormatMap* format1, const NEONFormatMap* format2) NEONFormatDecoder() argument
H A Dinstructions-arm64.h603 NEONFormatDecoder(const Instruction* instr, const NEONFormatMap* format0,
605 NEONFormatDecoder(const Instruction* instr, const NEONFormatMap* format0,
609 void SetFormatMaps(const NEONFormatMap* format0,
/third_party/vixl/src/aarch64/
H A Dinstructions-aarch64.h841 const NEONFormatMap* format0, in NEONFormatDecoder()
844 SetFormatMaps(format0, format1); in NEONFormatDecoder()
847 const NEONFormatMap* format0, in NEONFormatDecoder()
851 SetFormatMaps(format0, format1, format2); in NEONFormatDecoder()
855 void SetFormatMaps(const NEONFormatMap* format0, in SetFormatMaps() argument
858 VIXL_ASSERT(format0 != NULL); in SetFormatMaps()
859 formats_[0] = format0; in SetFormatMaps()
840 NEONFormatDecoder(const Instruction* instr, const NEONFormatMap* format0, const NEONFormatMap* format1) NEONFormatDecoder() argument
846 NEONFormatDecoder(const Instruction* instr, const NEONFormatMap* format0, const NEONFormatMap* format1, const NEONFormatMap* format2) NEONFormatDecoder() argument
H A Ddisasm-aarch64.h253 const char* format0,
256 const char* format0,
/third_party/vk-gl-cts/external/openglcts/modules/common/
H A DglcCompressedFormatTests.cpp778 const auto format0 = GL_COMPRESSED_RGB8_ETC2;
779 const auto data0 = loadImage(context.archive, format0, 0);
786 gl.compressedTexImage2D(GL_TEXTURE_2D, 0, format0, data0.width, data0.height, 0, data0.data.size(), data0.data.data());
1344 for(const auto& format0 : format.first)
1350 [format0, format1](ApiTestContext& context)
1353 const auto image0 = loadImage(context.archive, format0, 0);
1359 gl.compressedTexImage2D(GL_TEXTURE_2D, 0, format0, image0.width, image0.height, 0, image0.data.size(), image0.data.data());
/third_party/mesa3d/src/gallium/drivers/r300/
H A Dr300_texture.c927 out->format0 = 0; in r300_texture_setup_format_state()
933 out->format0 = in r300_texture_setup_format_state()
942 out->format0 |= R300_TX_PITCH_EN; in r300_texture_setup_format_state()
H A Dr300_context.h188 uint32_t format0; /* R300_TX_FORMAT0: 0x4480 */ member
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ycbcr/
H A DvktYCbCrViewTests.cpp99 inline bool formatsAreCompatible (const VkFormat format0, const VkFormat format1) in formatsAreCompatible() argument
101 return format0 == format1 || mapVkFormat(format0).getPixelSize() == mapVkFormat(format1).getPixelSize(); in formatsAreCompatible()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ycbcr/
H A DvktYCbCrViewTests.cpp97 inline bool formatsAreCompatible (const VkFormat format0, const VkFormat format1) in formatsAreCompatible() argument
99 return format0 == format1 || mapVkFormat(format0).getPixelSize() == mapVkFormat(format1).getPixelSize(); in formatsAreCompatible()

Completed in 37 milliseconds

12