/third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
H A D | numfmt.h | 39 #include "unicode/format.h" 69 * NumberFormat helps you to format and parse numbers for any locale. 72 * decimal digits used, or whether the number format is even decimal. 74 * To format a number for the current Locale, use one of the static 88 * nf->format(myNumber, myString); 96 * the format and use it multiple times so that the system doesn't 104 * nf->format(number, myString); 109 * To format a number for a different Locale, specify it in the 120 * Use \c createInstance() to get the normal number format for a \c Locale. 122 * to get the currency number format fo [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/zte/ |
H A D | zx_plane.c | 78 static int zx_vl_get_fmt(uint32_t format) in zx_vl_get_fmt() argument 80 switch (format) { in zx_vl_get_fmt() 96 WARN_ONCE(1, "invalid pixel format %d\n", format); in zx_vl_get_fmt() 113 static int zx_vl_rsz_get_fmt(uint32_t format) in zx_vl_rsz_get_fmt() argument 115 switch (format) { in zx_vl_rsz_get_fmt() 127 WARN_ONCE(1, "invalid pixel format %d\n", format); in zx_vl_rsz_get_fmt() 147 static void zx_vl_rsz_setup(struct zx_plane *zplane, uint32_t format, in zx_vl_rsz_setup() argument 159 /* Configure data format fo in zx_vl_rsz_setup() 196 uint32_t format; zx_vl_plane_atomic_update() local 306 zx_gl_get_fmt(uint32_t format) zx_gl_get_fmt() argument 361 uint32_t format; zx_gl_plane_atomic_update() local [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/sun4i/ |
H A D | sun8i_vi_layer.c | 74 const struct drm_format_info *format = state->fb->format; in sun8i_vi_layer_update_coord() local 98 if (format->hsub > 1) { in sun8i_vi_layer_update_coord() 101 mask = format->hsub - 1; in sun8i_vi_layer_update_coord() 107 if (format->vsub > 1) { in sun8i_vi_layer_update_coord() 110 mask = format->vsub - 1; in sun8i_vi_layer_update_coord() 121 (state->src.x1 >> 16) & ~(format->hsub - 1), in sun8i_vi_layer_update_coord() 122 (state->src.y1 >> 16) & ~(format->vsub - 1)); in sun8i_vi_layer_update_coord() 135 subsampled = format->hsub > 1 || format in sun8i_vi_layer_update_coord() 214 sun8i_vi_layer_get_csc_mode(const struct drm_format_info *format) sun8i_vi_layer_get_csc_mode() argument 287 const struct drm_format_info *format = fb->format; sun8i_vi_layer_update_buffer() local [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/mellanox/mlx5/core/ |
H A D | mlx5_core.h | 47 #define mlx5_core_dbg(__dev, format, ...) \ 48 dev_dbg((__dev)->device, "%s:%d:(pid %d): " format, \ 52 #define mlx5_core_dbg_once(__dev, format, ...) \ 54 "%s:%d:(pid %d): " format, \ 58 #define mlx5_core_dbg_mask(__dev, mask, format, ...) \ 61 mlx5_core_dbg(__dev, format, ##__VA_ARGS__); \ 64 #define mlx5_core_err(__dev, format, ...) \ 65 dev_err((__dev)->device, "%s:%d:(pid %d): " format, \ 69 #define mlx5_core_err_rl(__dev, format, ...) \ 71 "%s:%d:(pid %d): " format, \ 100 mlx5_printk(struct mlx5_core_dev *dev, int level, const char *format, ...) mlx5_printk() argument [all...] |
/kernel/linux/linux-6.6/drivers/media/platform/renesas/ |
H A D | rcar-isp.c | 175 const struct rcar_isp_format *format; in risp_start() local 180 format = risp_code_to_fmt(isp->mf.code); in risp_start() 181 if (!format) { in risp_start() 182 dev_err(isp->dev, "Unsupported bus format\n"); in risp_start() 202 u8 dt = format->datatype; in risp_start() 213 risp_write(isp, ISPPROCMODE_DT_REG(format->datatype), in risp_start() 214 ISPPROCMODE_DT_PROC_MODE_VC3(format->procmode) | in risp_start() 215 ISPPROCMODE_DT_PROC_MODE_VC2(format->procmode) | in risp_start() 216 ISPPROCMODE_DT_PROC_MODE_VC1(format->procmode) | in risp_start() 217 ISPPROCMODE_DT_PROC_MODE_VC0(format in risp_start() 270 risp_set_pad_format(struct v4l2_subdev *sd, struct v4l2_subdev_state *sd_state, struct v4l2_subdev_format *format) risp_set_pad_format() argument 294 risp_get_pad_format(struct v4l2_subdev *sd, struct v4l2_subdev_state *sd_state, struct v4l2_subdev_format *format) risp_get_pad_format() argument [all...] |
/test/xts/acts/multimedia/av_codec/vcodec/hdrcodec/src/ |
H A D | hdrcodec_ndk_sample.cpp | 43 void VdecFormatChanged(OH_AVCodec *codec, OH_AVFormat *format, void *userData) in VdecFormatChanged() argument 84 static void VencFormatChanged(OH_AVCodec *codec, OH_AVFormat *format, void *userData) in VencFormatChanged() argument 328 OH_AVFormat *format = OH_AVFormat_Create(); in Configure() local 329 if (format == nullptr) { in Configure() 330 cout << "Fatal: Failed to create format" << endl; in Configure() 333 (void)OH_AVFormat_SetIntValue(format, OH_MD_KEY_WIDTH, DEFAULT_WIDTH); in Configure() 334 (void)OH_AVFormat_SetIntValue(format, OH_MD_KEY_HEIGHT, DEFAULT_HEIGHT); in Configure() 335 (void)OH_AVFormat_SetIntValue(format, OH_MD_KEY_PIXEL_FORMAT, AV_PIXEL_FORMAT_NV12); in Configure() 336 (void)OH_AVFormat_SetDoubleValue(format, OH_MD_KEY_FRAME_RATE, DEFAULT_FRAME_RATE); in Configure() 337 int ret = OH_VideoDecoder_Configure(vdec_, format); in Configure() 381 OH_AVFormat *format = OH_AVFormat_Create(); ReConfigure() local [all...] |
/third_party/libsnd/programs/ |
H A D | common.c | 105 merge_broadcast_info (SNDFILE * infile, SNDFILE * outfile, int format, const METADATA_INFO * info) in merge_broadcast_info() argument 111 if ((SF_FORMAT_TYPEMASK & format) != SF_FORMAT_WAV) in merge_broadcast_info() 116 infileminor = SF_FORMAT_SUBMASK & format ; in merge_broadcast_info() 129 " the right format.\n\n" in merge_broadcast_info() 249 sfinfo.format = SF_FORMAT_WAV | (SF_FORMAT_SUBMASK & sfinfo.format) ; in sfe_apply_metadata_changes() 265 if (info->has_bext_fields && merge_broadcast_info (infile, outfile, sfinfo.format, info)) in sfe_apply_metadata_changes() 271 { int infileminor = SF_FORMAT_SUBMASK & sfinfo.format ; in sfe_apply_metadata_changes() 307 int format ; member 310 /* Map a file name extension to a container format 352 sfe_file_type_of_ext(const char *str, int format) sfe_file_type_of_ext() argument 416 sfe_endian_name(int format) sfe_endian_name() argument 430 sfe_container_name(int format) sfe_container_name() argument 466 sfe_codec_name(int format) sfe_codec_name() argument [all...] |
/third_party/ltp/testcases/kernel/device-drivers/v4l/user_space/ |
H A D | test_VIDIOC_ENUM_FRAMESIZES.c | 164 struct v4l2_fmtdesc format; in do_test_VIDIOC_ENUM_FRAMESIZES_type() local 169 memset(&format, 0xff, sizeof(format)); in do_test_VIDIOC_ENUM_FRAMESIZES_type() 170 format.index = i; in do_test_VIDIOC_ENUM_FRAMESIZES_type() 171 format.type = type; in do_test_VIDIOC_ENUM_FRAMESIZES_type() 173 ret_enum = ioctl(get_video_fd(), VIDIOC_ENUM_FMT, &format); in do_test_VIDIOC_ENUM_FRAMESIZES_type() 178 __FILE__, __LINE__, i, format.type, ret_enum, errno_enum); in do_test_VIDIOC_ENUM_FRAMESIZES_type() 183 do_test_VIDIOC_ENUM_FRAMESIZES(format.pixelformat); in do_test_VIDIOC_ENUM_FRAMESIZES_type() 294 struct v4l2_fmtdesc format; in do_test_VIDIOC_ENUM_FRAMESIZES_type_invalid_index() local 299 memset(&format, in do_test_VIDIOC_ENUM_FRAMESIZES_type_invalid_index() 337 struct v4l2_fmtdesc format; supported_pixel_format_type() local [all...] |
/third_party/libexif/libexif/huawei/ |
H A D | mnote-huawei-entry.c | 26 #include <libexif/exif-format.h> 45 if (e->format == EXIF_FORMAT_ASCII) { in mnote_huawei_entry_get_value() 52 int offset = i * exif_format_get_size(e->format); in mnote_huawei_entry_get_value() 67 if (e->format == EXIF_FORMAT_UNDEFINED) { in mnote_huawei_entry_get_value() 69 } else if (e->format == EXIF_FORMAT_SLONG) { in mnote_huawei_entry_get_value() 71 } else if (e->format == EXIF_FORMAT_LONG) { in mnote_huawei_entry_get_value() 74 snprintf(v, maxlen, _("unsupported data types: %d"), e->format); in mnote_huawei_entry_get_value() 199 if (e->format == EXIF_FORMAT_UNDEFINED || e->format == EXIF_FORMAT_ASCII) { in mnote_huawei_entry_set_value() 201 } else if (e->format in mnote_huawei_entry_set_value() [all...] |
/third_party/python/Tools/ssl/ |
H A D | multissltests.py | 91 ).format(OPENSSL_RECENT_VERSIONS, OPENSSL_OLD_VERSIONS) 100 ).format(LIBRESSL_RECENT_VERSIONS, LIBRESSL_OLD_VERSIONS) 173 self.src_dir, self.src_template.format(version)) 176 self.src_dir, self.build_template.format(version)) 180 return "<{0.__class__.__name__} for {0.version}>".format(self) 235 log.debug("Call '{}'".format(" ".join(cmd))) 239 log.debug("Call '{}'".format(" ".join(cmd))) 253 url = url_template.format(v=self.version, s=self.short_version) 254 log.info("Downloading from {}".format(url)) 261 "Download from {} has from failed: {}".format(ur [all...] |
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/ |
H A D | html_printer.py | 36 """Implementation of BasePrinter for generating diagnostic reports in HTML format. 163 """.format(id=self.makeIdentifierFromFilename(fileChecker.filename), relativefn=html.escape(self.getRelativeFilename(fileChecker.filename)))) 169 {num}<span class="sr-only"> warnings</span></span>""".format(num=warnings, icon=MESSAGE_TYPE_ICONS[MessageType.WARNING])) 175 {num}<span class="sr-only"> errors</span></span>""".format(num=errors, icon=MESSAGE_TYPE_ICONS[MessageType.ERROR])) 182 """.format(id=self.makeIdentifierFromFilename(fileChecker.filename))) 198 linkBackTooltip='{}: {} [...]'.format( 207 """.format( 226 '<li>{}</li>\n'.format(self.formatContext(see))) 230 linkBackTooltip='see-also associated with {} at {}'.format(msg.message_type, self.formatContextBrief(see))) 232 self.f.write('<li>{}</li>\n'.format(sel [all...] |
/third_party/skia/third_party/externals/dawn/src/dawn_native/ |
H A D | CommandValidation.cpp | 277 "%s format (%s) does not have the selected aspect (%s).", texture, in ValidateImageCopyTexture() 278 texture->GetFormat().format, textureCopy.aspect); in ValidateImageCopyTexture() 289 "format (%s) is a depth/stencil format or the sample count (%u) is > 1.", in ValidateImageCopyTexture() 291 texture->GetFormat().format, texture->GetSampleCount()); in ValidateImageCopyTexture() 327 const Format& format = textureCopy.texture->GetFormat(); in ValidateTextureCopyRange() local 328 if (format.isCompressed) { in ValidateTextureCopyRange() 329 const TexelBlockInfo& blockInfo = format.GetAspectInfo(textureCopy.aspect).block; in ValidateTextureCopyRange() 332 "Texture copy origin.x (%u) is not a multiple of compressed texture format block " in ValidateTextureCopyRange() 337 "Texture copy origin.y (%u) is not a multiple of compressed texture format bloc in ValidateTextureCopyRange() 358 const Format& format = view.texture->GetFormat(); SingleAspectUsedByImageCopyTexture() local 404 const Format& format = src.texture->GetFormat(); ValidateTextureToTextureCopyCommonRestrictions() local [all...] |
/test/xts/acts/multimedia/av_codec/audio_encoder/src/ |
H A D | status_check_test.cpp | 55 OH_AVFormat *format = OH_AVFormat_Create(); in HWTEST_F() local 64 result0 = audioBufferAacEncDemo->Configure(codec, format, channel, sampleRate, bitRate, sampleFormat, sampleBit, in HWTEST_F() 201 OH_AVFormat *format = OH_AVFormat_Create(); in HWTEST_F() local 214 result0 = audioBufferAacEncDemo->Configure(codec, format, channel, sampleRate, bitRate, sampleFormat, sampleBit, in HWTEST_F() 216 result0 = audioBufferAacEncDemo->Configure(codec, format, channel, sampleRate, bitRate, sampleFormat, sampleBit, in HWTEST_F() 231 OH_AVFormat *format = OH_AVFormat_Create(); in HWTEST_F() local 244 result0 = audioBufferAacEncDemo->Configure(codec, format, channel, sampleRate, bitRate, sampleFormat, sampleBit, in HWTEST_F() 260 OH_AVFormat *format = OH_AVFormat_Create(); in HWTEST_F() local 274 result0 = audioBufferAacEncDemo->Configure(codec, format, channel, sampleRate, bitRate, sampleFormat, sampleBit, in HWTEST_F() 291 OH_AVFormat *format in HWTEST_F() local 323 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 352 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 381 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 410 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 438 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 470 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 501 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 534 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 568 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 599 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 630 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 661 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 691 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 727 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 762 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 798 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 835 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 870 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 905 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 940 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 974 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 1010 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 1045 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 1081 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 1118 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 1153 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 1188 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 1223 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 1257 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 1291 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 1324 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 1359 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 1395 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 1428 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 1461 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 1494 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 1526 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 1560 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 1593 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 1628 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 1664 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 1697 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 1730 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 1763 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local 1796 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local [all...] |
/kernel/linux/linux-5.10/drivers/infiniband/ulp/opa_vnic/ |
H A D | opa_vnic_internal.h | 245 #define v_dbg(format, arg...) \ 246 netdev_dbg(adapter->netdev, format, ## arg) 247 #define v_err(format, arg...) \ 248 netdev_err(adapter->netdev, format, ## arg) 249 #define v_info(format, arg...) \ 250 netdev_info(adapter->netdev, format, ## arg) 251 #define v_warn(format, arg...) \ 252 netdev_warn(adapter->netdev, format, ## arg) 254 #define c_err(format, arg...) \ 255 dev_err(&cport->ibdev->dev, format, ## ar [all...] |
/kernel/linux/linux-6.6/drivers/infiniband/ulp/opa_vnic/ |
H A D | opa_vnic_internal.h | 245 #define v_dbg(format, arg...) \ 246 netdev_dbg(adapter->netdev, format, ## arg) 247 #define v_err(format, arg...) \ 248 netdev_err(adapter->netdev, format, ## arg) 249 #define v_info(format, arg...) \ 250 netdev_info(adapter->netdev, format, ## arg) 251 #define v_warn(format, arg...) \ 252 netdev_warn(adapter->netdev, format, ## arg) 254 #define c_err(format, arg...) \ 255 dev_err(&cport->ibdev->dev, format, ## ar [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | vbnenc.c | 40 int format; member 53 ret = av_image_check_size2(frame->width, frame->height, INT_MAX, frame->format, 0, avctx); in vbn_encode() 57 if (ctx->format == VBN_FORMAT_DXT1 || ctx->format == VBN_FORMAT_DXT5) { in vbn_encode() 62 if (frame->format != AV_PIX_FMT_RGBA) { in vbn_encode() 63 av_log(avctx, AV_LOG_ERROR, "DXT formats only support RGBA pixel format\n"); in vbn_encode() 70 switch (ctx->format) { in vbn_encode() 82 linesize = av_image_get_linesize(frame->format, frame->width, 0); in vbn_encode() 87 av_log(avctx, AV_LOG_ERROR, "Invalid format %02X\n", ctx->format); in vbn_encode() [all...] |
/third_party/node/deps/v8/tools/ |
H A D | adb-d8.py | 42 raise Exception("{} not in roots {}".format(filename, root_dirs)) 44 raise Exception("{} is not a file".format(filename)) 47 sys.stdout.write("Serving {}\r\n".format(os.path.relpath(filename))) 57 "Request failed ({})\n".format(e).replace('\n','\r\n')) 76 "mkdir -p '{0}' ; cd '{0}' ; md5sum -c -".format(device_d8_dir) 89 print("Updating {}...".format(filename)) 99 print("Forwarding device:{} to localhost:{}...".format( 104 "tcp:{}".format(device_port), 105 "tcp:{}".format(server_port) 111 d8_arg_str = " ".join("'{}'".format( [all...] |
/third_party/node/test/fixtures/wpt/WebCryptoAPI/import_export/ |
H A D | symmetric_importKey.https.any.js | 46 vector.formats.forEach(function(format) { 48 if (format === "jwk") { 53 testFormat(format, algorithm, data, keyData.length * 8, usages, extractable); 55 testEmptyUsages(format, algorithm, data, keyData.length * 8, extractable); 66 // Test importKey with a given key format and other parameters. If 68 function testFormat(format, algorithm, keyData, keySize, usages, extractable) { 70 return subtle.importKey(format, keyData, algorithm, extractable, usages). 78 return subtle.exportKey(format, key). 80 if (format !== "jwk") { 91 }, "Good parameters: " + keySize.toString() + " bits " + parameterString(format, keyDat [all...] |
/kernel/linux/linux-5.10/tools/virtio/virtio-trace/ |
H A D | trace-agent.h | 68 #define pr_err(format, ...) fprintf(stderr, format, ## __VA_ARGS__) 69 #define pr_info(format, ...) fprintf(stdout, format, ## __VA_ARGS__) 71 #define pr_debug(format, ...) fprintf(stderr, format, ## __VA_ARGS__) 73 #define pr_debug(format, ...) do {} while (0)
|
/kernel/linux/linux-6.6/tools/virtio/virtio-trace/ |
H A D | trace-agent.h | 68 #define pr_err(format, ...) fprintf(stderr, format, ## __VA_ARGS__) 69 #define pr_info(format, ...) fprintf(stdout, format, ## __VA_ARGS__) 71 #define pr_debug(format, ...) fprintf(stderr, format, ## __VA_ARGS__) 73 #define pr_debug(format, ...) do {} while (0)
|
/third_party/mesa3d/src/freedreno/fdl/ |
H A D | fd6_format_table.h | 31 #include "util/format/u_format.h" 50 enum a6xx_depth_format fd6_pipe2depth(enum pipe_format format); 52 enum a6xx_format fd6_vertex_format(enum pipe_format format) ATTRIBUTE_CONST; 53 enum a3xx_color_swap fd6_vertex_swap(enum pipe_format format) ATTRIBUTE_CONST; 54 enum a6xx_format fd6_texture_format(enum pipe_format format, 56 enum a3xx_color_swap fd6_texture_swap(enum pipe_format format, 58 enum a6xx_format fd6_color_format(enum pipe_format format, 60 enum a3xx_color_swap fd6_color_swap(enum pipe_format format,
|
/third_party/nghttp2/ |
H A D | gendowncasetbl.py | 16 sys.stdout.write('{} /* SPC */, '.format(i)) 18 sys.stdout.write('{} /* HT */, '.format(i)) 20 sys.stdout.write('{} /* {} */, '.format(i - ord('A') + ord('a'), chr(i))) 22 sys.stdout.write('{} /* {} */, '.format(i, chr(i))) 24 sys.stdout.write('{} /* {} */, '.format(i, hex(i))) 26 sys.stdout.write('{} /* NUL */, '.format(i)) 28 sys.stdout.write('{} /* {} */, '.format(i, name(i)))
|
/third_party/mesa3d/src/panfrost/lib/ |
H A D | pan_afbc.c | 39 * byte-per-pixel format like RGBA8888, that means that rows are 16*4=64 byte 60 * explicitly does not and can not know the format of the data contained within 70 * available by using a canonical internal format. Given a PIPE format, find 71 * the canonical AFBC internal format if it exists, or NONE if the format 75 panfrost_afbc_format(unsigned arch, enum pipe_format format) in panfrost_afbc_format() argument 78 switch (format) { in panfrost_afbc_format() 95 switch (format) { in panfrost_afbc_format() 126 /* A format ma 129 panfrost_format_supports_afbc(const struct panfrost_device *dev, enum pipe_format format) panfrost_format_supports_afbc() argument 137 panfrost_afbc_can_ytr(enum pipe_format format) panfrost_afbc_can_ytr() argument [all...] |
/third_party/python/Lib/sqlite3/ |
H A D | dump.py | 12 Returns an iterator to the dump of the database in an SQL text format. 49 # "VALUES('table','{0}','{0}',0,'{1}');".format( 53 yield('{0};'.format(sql)) 57 res = cu.execute('PRAGMA table_info("{0}")'.format(table_name_ident)) 59 q = """SELECT 'INSERT INTO "{0}" VALUES({1})' FROM "{0}";""".format( 61 ",".join("""'||quote("{0}")||'""".format(col.replace('"', '""')) for col in column_names)) 64 yield("{0};".format(row[0])) 75 yield('{0};'.format(sql)) 80 yield('{0};'.format(row))
|
/third_party/skia/third_party/externals/swiftshader/src/Common/ |
H A D | DebugAndroid.hpp | 62 #define ERR(format, ...) \ 64 ALOGE("badness: err %s %s:%d (" format ")", __FUNCTION__, __FILE__, \ 69 #define FIXME(format, ...) \ 71 ALOGE("badness: fixme %s %s:%d (" format ")", __FUNCTION__, __FILE__, \ 90 #define TRACE(format, ...) \ 91 ALOGV("%s %s:%d (" format ")", __FUNCTION__, __FILE__, \ 97 void trace(const char *format, ...);
|