/third_party/ffmpeg/libavfilter/ |
H A D | vf_transpose_opencl.c | 239 { "cclock_flip", "rotate counter-clockwise with vertical flip", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_CCLOCK_FLIP }, .flags=FLAGS, .unit = "dir" }, 240 { "clock", "rotate clockwise", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_CLOCK }, .flags=FLAGS, .unit = "dir" }, 241 { "cclock", "rotate counter-clockwise", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_CCLOCK }, .flags=FLAGS, .unit = "dir" }, 242 { "clock_flip", "rotate clockwise with vertical flip", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_CLOCK_FLIP }, .flags=FLAGS, .unit = "dir" },
|
H A D | vf_vpp_qsv.c | 117 { "cclock_hflip", "rotate counter-clockwise with horizontal flip", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_CCLOCK_FLIP }, .flags=FLAGS, .unit = "transpose" }, 118 { "clock", "rotate clockwise", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_CLOCK }, .flags=FLAGS, .unit = "transpose" }, 119 { "cclock", "rotate counter-clockwise", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_CCLOCK }, .flags=FLAGS, .unit = "transpose" }, 120 { "clock_hflip", "rotate clockwise with horizontal flip", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_CLOCK_FLIP }, .flags=FLAGS, .unit = "transpose" }, 121 { "reversal", "rotate by half-turn", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_REVERSAL }, .flags=FLAGS, .unit = "transpose" }, 122 { "hflip", "flip horizontally", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_HFLIP }, .flags=FLAGS, .unit = "transpose" }, 123 { "vflip", "flip vertically", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_VFLIP }, .flags=FLAGS, .unit = "transpose" },
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/number/ |
H A D | NumberFormatterSettings.java | 97 * Specifies the unit (unit of measure, currency, or percent) to associate with rendered numbers. 106 * <strong>Note:</strong> The unit can also be specified by passing a {@link Measure} to 108 * precedence over units specified here. This setter is designed for situations when the unit is 119 * NumberFormatter.with().unit(MeasureUnit.METER) 125 * NumberFormatter.with().unit(Currency.getInstance("USD")) 131 * NumberFormatter.with().unit(NoUnit.PERCENT) 141 * If the input usage is correctly set the output unit <b>will change</b> 142 * according to `usage`, `locale` and `unit` value. 145 * @param unit 154 unit(MeasureUnit unit) unit() argument [all...] |
/third_party/icu/icu4c/source/common/unicode/ |
H A D | stringtriebuilder.h | 117 // Finds the first unit index after this one where 128 virtual int32_t indexOfElementWithNextUnit(int32_t i, int32_t unitIndex, char16_t unit) const = 0; 347 // Adds a unit with a final value. 355 // Adds a unit which leads to another match node. 378 unit(middleUnit), lessThan(lessThanNode), greaterOrEqual(greaterOrEqualNode) {} in SplitBranchNode() 383 char16_t unit; member in StringTrieBuilder::SplitBranchNode 388 // Branch head node, for writing the actual node lead unit. 411 virtual int32_t write(int32_t unit) = 0;
|
/third_party/node/deps/icu-small/source/common/unicode/ |
H A D | stringtriebuilder.h | 117 // Finds the first unit index after this one where 128 virtual int32_t indexOfElementWithNextUnit(int32_t i, int32_t unitIndex, char16_t unit) const = 0; 347 // Adds a unit with a final value. 355 // Adds a unit which leads to another match node. 378 unit(middleUnit), lessThan(lessThanNode), greaterOrEqual(greaterOrEqualNode) {} in SplitBranchNode() 383 char16_t unit; member in StringTrieBuilder::SplitBranchNode 388 // Branch head node, for writing the actual node lead unit. 411 virtual int32_t write(int32_t unit) = 0;
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/ |
H A D | nvfx_shader.h | 90 * 17-20: texture unit number 435 int8_t unit; member 450 nvfx_insn(bool sat, unsigned op, int unit, struct nvfx_reg dst, unsigned mask, struct nvfx_src s0, struct nvfx_src s1, struct nvfx_src s2) in nvfx_insn() argument 455 .unit = unit, in nvfx_insn()
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
H A D | stringtriebuilder.h | 117 // Finds the first unit index after this one where 128 virtual int32_t indexOfElementWithNextUnit(int32_t i, int32_t unitIndex, char16_t unit) const = 0; 347 // Adds a unit with a final value. 355 // Adds a unit which leads to another match node. 378 unit(middleUnit), lessThan(lessThanNode), greaterOrEqual(greaterOrEqualNode) {} in SplitBranchNode() 383 char16_t unit; member in StringTrieBuilder::SplitBranchNode 388 // Branch head node, for writing the actual node lead unit. 411 virtual int32_t write(int32_t unit) = 0;
|
/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/heif_impl/heif_parser/box/ |
H A D | item_property_hvcc_box.cpp | 110 for (const auto& unit : array.nalUnits) { in GetHeaders() 111 outData->push_back((unit.size() >> THREE_BYTES_SHIFT) & 0xFF); in GetHeaders() 112 outData->push_back((unit.size() >> TWO_BYTES_SHIFT) & 0xFF); in GetHeaders() 113 outData->push_back((unit.size() >> ONE_BYTE_SHIFT) & 0xFF); in GetHeaders() 114 outData->push_back((unit.size()) & 0xFF); in GetHeaders() 115 outData->insert(outData->end(), unit.begin(), unit.end()); in GetHeaders()
|
/third_party/python/Lib/ |
H A D | tracemalloc.py | 14 for unit in ('B', 'KiB', 'MiB', 'GiB', 'TiB'): 15 if abs(size) < 100 and unit != 'B': 18 return "%+.1f %s" % (size, unit) 20 return "%.1f %s" % (size, unit) 21 if abs(size) < 10 * 1024 or unit == 'TiB': 24 return "%+.0f %s" % (size, unit) 26 return "%.0f %s" % (size, unit)
|
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuTestLog.cpp | 446 void TestLog::writeFloat (const char* name, const char* description, const char* unit, qpKeyValueTag tag, float value) in writeFloat() argument 450 if (qpTestLog_writeFloat(m_log, name, description, unit, tag, value) == DE_FALSE) in writeFloat() 454 void TestLog::writeInteger (const char* name, const char* description, const char* unit, qpKeyValueTag tag, deInt64 value) in writeInteger() argument 458 if (qpTestLog_writeInteger(m_log, name, description, unit, tag, value) == DE_FALSE) in writeInteger() 545 void TestLog::writeValueInfo (const std::string& name, const std::string& description, const std::string& unit, qpSampleValueTag tag) in writeValueInfo() argument 548 if (qpTestLog_writeValueInfo(m_log, name.c_str(), description.c_str(), unit.empty() ? DE_NULL : unit.c_str(), tag) == DE_FALSE) in writeValueInfo()
|
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | node_text_modifier.cpp | 266 void SetFontSize(ArkUINodeHandle node, ArkUI_Float32 fontSize, ArkUI_Int32 unit) in SetFontSize() argument 270 auto unitEnum = static_cast<OHOS::Ace::DimensionUnit>(unit); in SetFontSize() 279 TextModelNG::SetFontSize(frameNode, Dimension(fontSize, static_cast<OHOS::Ace::DimensionUnit>(unit))); in SetFontSize() 293 void SetTextLineHeight(ArkUINodeHandle node, ArkUI_Float32 number, ArkUI_Int32 unit) in SetTextLineHeight() argument 297 TextModelNG::SetLineHeight(frameNode, Dimension(number, static_cast<DimensionUnit>(unit))); in SetTextLineHeight() 408 void SetTextMinFontSize(ArkUINodeHandle node, ArkUI_Float32 number, const ArkUI_Int32 unit) in SetTextMinFontSize() argument 412 TextModelNG::SetAdaptMinFontSize(frameNode, Dimension(number, static_cast<DimensionUnit>(unit))); in SetTextMinFontSize() 452 void SetTextMaxFontSize(ArkUINodeHandle node, ArkUI_Float32 number, ArkUI_Int32 unit) in SetTextMaxFontSize() argument 456 TextModelNG::SetAdaptMaxFontSize(frameNode, Dimension(number, static_cast<DimensionUnit>(unit))); in SetTextMaxFontSize() 605 void SetTextTextIndent(ArkUINodeHandle node, ArkUI_Float32 number, ArkUI_Int32 unit) in SetTextTextIndent() argument 626 SetTextBaselineOffset(ArkUINodeHandle node, ArkUI_Float32 number, ArkUI_Int32 unit) SetTextBaselineOffset() argument 647 SetTextLetterSpacing(ArkUINodeHandle node, ArkUI_Float32 number, ArkUI_Int32 unit) SetTextLetterSpacing() argument 841 GetFontSize(ArkUINodeHandle node, ArkUI_Int32 unit) GetFontSize() argument 940 SetTextLineSpacing(ArkUINodeHandle node, ArkUI_Float32 number, ArkUI_Int32 unit) SetTextLineSpacing() argument [all...] |
H A D | node_symbol_glyph_modifier.cpp | 69 void SetFontSize(ArkUINodeHandle node, ArkUI_Float32 fontSize, ArkUI_Int32 unit) in SetFontSize() argument 73 auto unitEnum = static_cast<OHOS::Ace::DimensionUnit>(unit); in SetFontSize() 82 SymbolModelNG::SetFontSize(frameNode, Dimension(fontSize, static_cast<OHOS::Ace::DimensionUnit>(unit))); in SetFontSize()
|
/third_party/FreeBSD/sys/sys/ |
H A D | bus.h | 75 #define DF_WILDCARD 0x04 /* unit was originally wildcard */ 100 * is to manage the allocation of unit numbers for device instances 103 * two devclasses with the same name. This ensures that unique unit 107 * pci, pccard) should all use the same devclass to ensure that unit 219 typedef void (*add_res_callback_t)(const char *devclass_name, int type, int unit, rman_res_t start, rman_res_t end, 242 int unit); 287 device_t device_add_child(device_t dev, const char *name, int unit); 289 const char *name, int unit); 298 int unit); 337 int device_set_unit(device_t dev, int unit); /* XX [all...] |
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
H A D | lp_bld_tgsi_aos.c | 310 unsigned unit; in emit_tex() local 327 unit = inst->Src[3].Register.Index; in emit_tex() 330 unit = inst->Src[1].Register.Index; in emit_tex() 334 target, unit, in emit_tex() 346 unsigned unit; in emit_sample() local 358 unit = inst->Src[1].Register.Index; in emit_sample() 359 assert(inst->Src[2].Register.Index == unit); in emit_sample() 361 target = bld->sv[unit].Resource; in emit_sample() 365 target, unit, in emit_sample()
|
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/ |
H A D | cj_rect_ffi.cpp | 78 DimensionUnit unit = DimensionUnit::VP; in FfiOHOSAceFrameworkRectSetRadiusArray() local 80 unit = static_cast<DimensionUnit>(vecUnit->at(i)); in FfiOHOSAceFrameworkRectSetRadiusArray() 83 Dimension value(vecValue->at(i), static_cast<DimensionUnit>(unit)); in FfiOHOSAceFrameworkRectSetRadiusArray()
|
/third_party/ffmpeg/libavutil/ |
H A D | opt.h | 168 * It is possible to create named constants for options. Simply set the unit 171 * with their unit field set to the same string. 303 * The logical unit to which the option belongs. Non-constant 305 * unit. May be NULL. 307 const char *unit; member 595 * @param[in] unit When searching for named constants, name of the unit 608 const AVOption *av_opt_find(void *obj, const char *name, const char *unit, 620 * @param[in] unit When searching for named constants, name of the unit [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/ |
H A D | BasicPeriodFormatter.java | 118 // determine if there is any non-zero unit in format() 158 // we didn't format the previous unit in format() 168 TimeUnit unit = TimeUnit.units[i]; in format() 181 boolean mustSkip = data.appendUnit(unit, count, cv, customs.unitVariant, in format() 190 useDigitPrefix = data.appendUnitSeparator(unit, fullSep, afterFirst, beforeLast, sb); in format()
|
/third_party/FreeBSD/sys/dev/usb/controller/ |
H A D | xhci_pci.c | 92 int unit = device_get_unit(self); in xhci_pci_attach() local 96 res = bus_alloc_resource_any(self, SYS_RES_MEMORY, &unit, 0); in xhci_pci_attach() 110 res = bus_alloc_resource_any(self, SYS_RES_IRQ, &unit, 0); in xhci_pci_attach()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
H A D | PluralRangesTest.java | 111 final MeasureUnit unit = (MeasureUnit) test[4]; in TestFormatting() 119 actual = mf.formatMeasures(new Measure(low, unit), new Measure(high, unit)); in TestFormatting() 123 assertEquals(i + " Formatting unit", expected, actual); in TestFormatting()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/duration/ |
H A D | BasicPeriodFormatter.java | 119 // determine if there is any non-zero unit in format() 159 // we didn't format the previous unit in format() 169 TimeUnit unit = TimeUnit.units[i]; in format() 182 boolean mustSkip = data.appendUnit(unit, count, cv, customs.unitVariant, in format() 191 useDigitPrefix = data.appendUnitSeparator(unit, fullSep, afterFirst, beforeLast, sb); in format()
|
/third_party/node/deps/v8/src/torque/ |
H A D | torque-compiler.cc | 181 for (const auto& unit : units) { in CompileTorqueForKythe() 182 SourceId source_id = SourceFileMap::AddSource(unit.source_file_path); in CompileTorqueForKythe() 184 ParseTorque(unit.file_content); in CompileTorqueForKythe()
|
/third_party/mesa3d/src/panfrost/midgard/ |
H A D | helpers.h | 104 /* Instructions that are on the load/store unit but don't access memory */ 235 /* Shorthands for each unit */ 424 midgard_is_branch_unit(unsigned unit) 426 return (unit == ALU_ENAB_BRANCH) || (unit == ALU_ENAB_BR_COMPACT);
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ |
H A D | vktInfoTests.cpp | 209 const SizeUnit* unit = getBestSizeUnit(deUint64(size.value)); in operator <<() local 213 << (double(size.value) / double(unit->value)) in operator <<() 214 << " " << unit->name; in operator <<()
|
/third_party/vk-gl-cts/framework/qphelper/ |
H A D | qpTestLog.h | 220 deBool qpTestLog_writeInteger (qpTestLog* log, const char* name, const char* description, const char* unit, qpKeyValueTag tag, deInt64 value); 221 deBool qpTestLog_writeFloat (qpTestLog* log, const char* name, const char* description, const char* unit, qpKeyValueTag tag, float value); 243 deBool qpTestLog_writeValueInfo (qpTestLog* log, const char* name, const char* description, const char* unit, qpSampleValueTag tag);
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/ |
H A D | arkts_native_render_node_bridge.cpp | 323 int32_t unit = 0; in SetRotation() local 334 unit = fifthArg->Int32Value(vm); in SetRotation() 336 GetArkUINodeModifiers()->getRenderNodeModifier()->setRotation(nativeNode, rotationX, rotationY, rotationZ, unit); in SetRotation() 364 int32_t unit = 0; in SetShadowOffset() local 372 unit = fourthArg->Int32Value(vm); in SetShadowOffset() 374 GetArkUINodeModifiers()->getRenderNodeModifier()->setShadowOffset(nativeNode, offsetX, offsetY, unit); in SetShadowOffset() 547 Local<JSValueRef> unit = runtimeCallInfo->GetCallArgRef(3); in SetSize() local 549 if (unit->IsNumber()) { in SetSize() 550 unitValue = unit->Int32Value(vm); in SetSize() 575 Local<JSValueRef> unit in SetPosition() local [all...] |