/third_party/icu/tools/unicode/c/genprops/ |
D | corepropsbuilder.cpp | 421 int32_t value=0, den=0, exp=0, ntv=0; in encodeNumericValue() local 434 ntv=-1; in encodeNumericValue() 438 if(ntv>=0 && *numberLimit=='/') { in encodeNumericValue() 443 ntv=-1; in encodeNumericValue() 453 if(ntv<0) { in encodeNumericValue() 458 ntv=UPROPS_NTV_NUMERIC_START+value*100; in encodeNumericValue() 462 ntv=UPROPS_NTV_NUMERIC_START+value; in encodeNumericValue() 473 ntv=((mant+14)<<5)+(exp-2); in encodeNumericValue() 483 ntv=((mant+0xbf)<<2)+(exp-1); in encodeNumericValue() 485 ntv=-1; in encodeNumericValue() [all …]
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | UCharacterProperty.java | 1027 int ntv = getNumericTypeValue(getProperty(c)); in getNumericValue() local 1029 if(ntv==NTV_NONE_) { in getNumericValue() 1031 } else if(ntv<NTV_DIGIT_START_) { in getNumericValue() 1033 return ntv-NTV_DECIMAL_START_; in getNumericValue() 1034 } else if(ntv<NTV_NUMERIC_START_) { in getNumericValue() 1036 return ntv-NTV_DIGIT_START_; in getNumericValue() 1037 } else if(ntv<NTV_FRACTION_START_) { in getNumericValue() 1039 return ntv-NTV_NUMERIC_START_; in getNumericValue() 1040 } else if(ntv<NTV_LARGE_START_) { in getNumericValue() 1043 } else if(ntv<NTV_BASE60_START_) { in getNumericValue() [all …]
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
D | UCharacterProperty.java | 1008 int ntv = getNumericTypeValue(getProperty(c)); in getNumericValue() local 1010 if(ntv==NTV_NONE_) { in getNumericValue() 1012 } else if(ntv<NTV_DIGIT_START_) { in getNumericValue() 1014 return ntv-NTV_DECIMAL_START_; in getNumericValue() 1015 } else if(ntv<NTV_NUMERIC_START_) { in getNumericValue() 1017 return ntv-NTV_DIGIT_START_; in getNumericValue() 1018 } else if(ntv<NTV_FRACTION_START_) { in getNumericValue() 1020 return ntv-NTV_NUMERIC_START_; in getNumericValue() 1021 } else if(ntv<NTV_LARGE_START_) { in getNumericValue() 1024 } else if(ntv<NTV_BASE60_START_) { in getNumericValue() [all …]
|
/third_party/node/deps/icu-small/source/common/ |
D | uchar.cpp | 360 int32_t ntv; in u_getNumericValue() local 362 ntv=(int32_t)GET_NUMERIC_TYPE_VALUE(props); in u_getNumericValue() 364 if(ntv==UPROPS_NTV_NONE) { in u_getNumericValue() 366 } else if(ntv<UPROPS_NTV_DIGIT_START) { in u_getNumericValue() 368 return ntv-UPROPS_NTV_DECIMAL_START; in u_getNumericValue() 369 } else if(ntv<UPROPS_NTV_NUMERIC_START) { in u_getNumericValue() 371 return ntv-UPROPS_NTV_DIGIT_START; in u_getNumericValue() 372 } else if(ntv<UPROPS_NTV_FRACTION_START) { in u_getNumericValue() 374 return ntv-UPROPS_NTV_NUMERIC_START; in u_getNumericValue() 375 } else if(ntv<UPROPS_NTV_LARGE_START) { in u_getNumericValue() [all …]
|
D | uprops.h | 111 #define UPROPS_NTV_GET_TYPE(ntv) \ argument 112 ((ntv==UPROPS_NTV_NONE) ? U_NT_NONE : \ 113 (ntv<UPROPS_NTV_DIGIT_START) ? U_NT_DECIMAL : \ 114 (ntv<UPROPS_NTV_NUMERIC_START) ? U_NT_DIGIT : \
|
D | uprops.cpp | 520 int32_t ntv=(int32_t)GET_NUMERIC_TYPE_VALUE(u_getMainProperties(c)); in getNumericType() local 521 return UPROPS_NTV_GET_TYPE(ntv); in getNumericType()
|
/third_party/skia/third_party/externals/icu/source/common/ |
D | uchar.cpp | 384 int32_t ntv; in u_getNumericValue() local 386 ntv=(int32_t)GET_NUMERIC_TYPE_VALUE(props); in u_getNumericValue() 388 if(ntv==UPROPS_NTV_NONE) { in u_getNumericValue() 390 } else if(ntv<UPROPS_NTV_DIGIT_START) { in u_getNumericValue() 392 return ntv-UPROPS_NTV_DECIMAL_START; in u_getNumericValue() 393 } else if(ntv<UPROPS_NTV_NUMERIC_START) { in u_getNumericValue() 395 return ntv-UPROPS_NTV_DIGIT_START; in u_getNumericValue() 396 } else if(ntv<UPROPS_NTV_FRACTION_START) { in u_getNumericValue() 398 return ntv-UPROPS_NTV_NUMERIC_START; in u_getNumericValue() 399 } else if(ntv<UPROPS_NTV_LARGE_START) { in u_getNumericValue() [all …]
|
D | uprops.h | 111 #define UPROPS_NTV_GET_TYPE(ntv) \ argument 112 ((ntv==UPROPS_NTV_NONE) ? U_NT_NONE : \ 113 (ntv<UPROPS_NTV_DIGIT_START) ? U_NT_DECIMAL : \ 114 (ntv<UPROPS_NTV_NUMERIC_START) ? U_NT_DIGIT : \
|
D | uprops.cpp | 474 int32_t ntv=(int32_t)GET_NUMERIC_TYPE_VALUE(u_getMainProperties(c)); in getNumericType() local 475 return UPROPS_NTV_GET_TYPE(ntv); in getNumericType()
|
/third_party/icu/icu4c/source/common/ |
D | uchar.cpp | 384 int32_t ntv; in u_getNumericValue() local 386 ntv=(int32_t)GET_NUMERIC_TYPE_VALUE(props); in u_getNumericValue() 388 if(ntv==UPROPS_NTV_NONE) { in u_getNumericValue() 390 } else if(ntv<UPROPS_NTV_DIGIT_START) { in u_getNumericValue() 392 return ntv-UPROPS_NTV_DECIMAL_START; in u_getNumericValue() 393 } else if(ntv<UPROPS_NTV_NUMERIC_START) { in u_getNumericValue() 395 return ntv-UPROPS_NTV_DIGIT_START; in u_getNumericValue() 396 } else if(ntv<UPROPS_NTV_FRACTION_START) { in u_getNumericValue() 398 return ntv-UPROPS_NTV_NUMERIC_START; in u_getNumericValue() 399 } else if(ntv<UPROPS_NTV_LARGE_START) { in u_getNumericValue() [all …]
|
D | uprops.h | 111 #define UPROPS_NTV_GET_TYPE(ntv) \ argument 112 ((ntv==UPROPS_NTV_NONE) ? U_NT_NONE : \ 113 (ntv<UPROPS_NTV_DIGIT_START) ? U_NT_DECIMAL : \ 114 (ntv<UPROPS_NTV_NUMERIC_START) ? U_NT_DIGIT : \
|
D | uprops.cpp | 507 int32_t ntv=(int32_t)GET_NUMERIC_TYPE_VALUE(u_getMainProperties(c)); in getNumericType() local 508 return UPROPS_NTV_GET_TYPE(ntv); in getNumericType()
|
/third_party/mesa3d/docs/relnotes/ |
D | 22.0.5.rst | 115 - zink: require draw params ext/cap in ntv if drawid is used
|
D | 21.1.2.rst | 50 - zink/ntv: Don't call free() on ralloc'd memory
|
D | 22.1.1.rst | 130 - zink: require draw params ext/cap in ntv if drawid is used
|
D | 21.2.6.rst | 127 - zink: add more int/float types to cast switching in ntv
|
D | 22.1.2.rst | 143 - zink: fix ntv partial stores
|
D | 21.0.0.rst | 2423 - zink: add alternate ubo loader in ntv 2424 - zink: assert all index values in ntv OpAccessChain constructor 2436 - zink: be more paranoid about array strides in ntv 2437 - zink: add get_storage_class() ntv util 2438 - zink: handle struct derefs in ntv 2439 - zink: ntv formatting 2440 - zink: add struct type support for ntv 2443 - zink: add handlers for some bitfield ops in ntv 2444 - zink: set 64bit shader caps in ntv 2445 - zink: change function params and asserts to permit 64bit types in ntv [all …]
|
D | 21.1.0.rst | 3826 - zink: add util function for emitting ntv atomic ops 3829 - zink: emit ssbo variables in ntv 3830 - zink: modify ubo loading in ntv to work for ssbos 3853 - zink: tweak xfb slot mapping in ntv 3858 - zink: add ntv util function for getting image type 3862 - zink: add ntv function for emitting variable access decorations 3868 - zink: handle image variable types in ntv 3869 - zink: handle more atomic ops in ntv 3870 - zink: handle nir_intrinsic_memory_barrier in ntv 3872 - zink: expand ntv array derefs to track image derefs [all …]
|
D | 20.3.5.rst | 210 - zink: handle 1bit undef values in ntv
|
D | 20.2.0.rst | 3510 - zink: explicitly zero some arrays in ntv 3511 - zink: add SpvId returns to a couple ntv functions 3515 - zink: always use logical eq ops in ntv with 1bit inputs 3517 - zink: emit interpolation decorations for ntv outputs 3523 - zink: implement streamout and xfb handling in ntv 3529 - zink: use correct define value for reserved slot count in ntv 3532 - zink: handle signed and unsigned min/max ops in ntv 3533 - zink: add ult handling for ntv 3534 - zink: add bitfield_reverse handling to ntv 3536 - zink: handle ixor in ntv [all …]
|
D | 22.0.2.rst | 236 - zink: use the calculated last struct member idx for ssbo size in ntv
|
D | 20.3.0.rst | 3750 - zink: set multiviewport cap in ntv when gl_ViewportIndex is a written output 3756 - zink: correctly handle ARB_arrays_of_arrays in ntv for samplers 3759 - zink: always emit descriptor set 0 in ntv 3801 - zink: add ntv handling for geometry shader variables 3803 - zink: add handling for gs in ntv 3815 - zink: add helper for vec-type input variables in ntv 3816 - zink: add ntv handling for ARB_sample_shading
|
D | 22.1.0.rst | 2407 - zink: switch to u_foreach_bit for ntv image access decorations 2491 - zink: add nir_var_function_temp support to ntv 2493 - zink: fix unreachable() location in ntv streamout info 2698 - zink: handle SUBPASS_MS in ntv 2743 - zink: use the calculated last struct member idx for ssbo size in ntv
|
D | 22.0.0.rst | 3147 - zink: add more int/float types to cast switching in ntv 3266 - zink: implement sparse shader instructions in ntv 3267 - zink: always set actual_dest_type for ntv tex instruction emission 3270 - zink: always pass shader info to ntv 3272 - zink: only allocate ntv residency info if it will be used 3273 - zink: emit sparse residency cap in ntv
|