/frameworks/av/media/libstagefright/include/foundation/ |
D | Flagged.h | 115 template<typename Flag> 116 static constexpr Flag topBits(int num) { in topBits() 117 return Flag(num > 0 ? in topBits() 118 ~((Flag(1) << (sizeof(Flag) * 8 - is_signed_integral<Flag>::value - num)) - 1) : in topBits() 131 template<typename Flag> 132 static constexpr Flag minMask(Flag maxValue, int shift=sizeof(Flag) * 4) { 133 static_assert(is_unsigned_integral<Flag>::value, 135 return shift ? minMask<Flag>(Flag(maxValue | (maxValue >> shift)), shift >> 1) : maxValue; 148 template<typename Flag, typename IntFlag = typename underlying_integral_type<Flag>::type> 149 static constexpr IntFlag lshift(Flag value, int shift) { in lshift() [all …]
|
D | AData.h | 481 template<typename Flag> 484 static_assert(std::is_unsigned<Flag>::value, "Flag must be unsigned"); 485 static_assert(std::is_integral<Flag>::value, "Flag must be an integral type"); 487 static constexpr Flag count = num_types + 1; 490 typedef Flag type; ///< flag type 492 static constexpr Flag mask = _Flagged_helper::minMask<Flag>(count); ///< flag mask 508 static constexpr bool canDeleteAs(Flag objectFlag, Flag deleteFlag) { 518 static constexpr Flag flagFor(void*) { 526 static constexpr Flag flagFor(T*) { 544 template<typename Flag, size_t MaxSize=1024, size_t Align=4> [all …]
|
/frameworks/compile/mclinker/tools/mcld/ |
D | Options.td | 23 def Bsymbolic : Flag<["-"], "Bsymbolic">, 27 def Bgroup : Flag<["-"], "Bgroup">, 38 def NoUndef : Flag<["--"], "no-undefined">, 42 def AllowMulDefs : Flag<["--"], "allow-multiple-definition">, 57 def EnableNewDTags : Flag<["--"], "enable-new-dtags">, 71 def GCSections : Flag<["--"], "gc-sections">, 75 def NoGCSections : Flag<["--"], "no-gc-sections">, 79 def PrintGCSections : Flag<["--"], "print-gc-sections">, 83 def NoPrintGCSections : Flag<["--"], "no-print-gc-sections">, 87 def LDGeneratedUnwindInfo : Flag<["--"], "ld-generated-unwind-info">, [all …]
|
/frameworks/compile/slang/ |
D | RSCCOptions.td | 52 def emit_asm : Flag<["-"], "emit-asm">, 54 def _emit_asm : Flag<["-"], "S">, Alias<emit_asm>; 55 def emit_llvm : Flag<["-"], "emit-llvm">, 57 def emit_bc : Flag<["-"], "emit-bc">, 59 def emit_nothing : Flag<["-"], "emit-nothing">, 63 def m32 : Flag<["-"], "m32">, HelpText<"Emit 32-bit code (only for C++, unless eng build)">; 64 def m64 : Flag<["-"], "m64">, HelpText<"Emit 64-bit code (only for C++, unless eng build)">; 66 def emit_g : Flag<["-"], "g">, 72 def allow_rs_prefix : Flag<["-"], "allow-rs-prefix">, 95 def w : Flag<["-"], "w">, HelpText<"Suppress all warnings">; [all …]
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/ |
D | armVCM4P10_UnpackBlock4x4.c | 56 int Flag, Value; in armVCM4P10_UnpackBlock4x4() local 65 Flag = *pSrc++; in armVCM4P10_UnpackBlock4x4() 66 if (Flag & 0x10) in armVCM4P10_UnpackBlock4x4() 85 i = Flag & 15; in armVCM4P10_UnpackBlock4x4() 88 while ((Flag & 0x20)==0); in armVCM4P10_UnpackBlock4x4()
|
D | armVCM4P10_UnpackBlock2x2.c | 56 int Flag, Value; in armVCM4P10_UnpackBlock2x2() local 65 Flag = *pSrc++; in armVCM4P10_UnpackBlock2x2() 66 if (Flag & 0x10) in armVCM4P10_UnpackBlock2x2() 85 i = Flag & 15; in armVCM4P10_UnpackBlock2x2() 88 while ((Flag & 0x20)==0); in armVCM4P10_UnpackBlock2x2()
|
/frameworks/base/tools/aapt2/ |
D | Flags.cpp | 39 flags_.push_back(Flag{name.to_string(), description.to_string(), func, true, 1, false}); in RequiredFlag() 51 flags_.push_back(Flag{name.to_string(), description.to_string(), func, true, 1, false}); in RequiredFlagList() 63 flags_.push_back(Flag{name.to_string(), description.to_string(), func, false, 1, false}); in OptionalFlag() 75 flags_.push_back(Flag{name.to_string(), description.to_string(), func, false, 1, false}); in OptionalFlagList() 87 flags_.push_back(Flag{name.to_string(), description.to_string(), func, false, 1, false}); in OptionalFlagList() 98 flags_.push_back(Flag{name.to_string(), description.to_string(), func, false, 0, false}); in OptionalSwitch() 106 for (const Flag& flag : flags_) { in Usage() 114 for (const Flag& flag : flags_) { in Usage() 151 for (Flag& flag : flags_) { in Parse() 177 for (const Flag& flag : flags_) { in Parse()
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/ |
D | armVCM4P10_UnpackBlock4x4_s.s | 48 Flag RN 3 label 66 LDRB Flag, [pSrc], #1 ;// Preload <Flag> before <unpackLoop> 86 TST Flag, #0x10 ;// Computing (Flag & 0x10) 89 AND strOffset, cstOffset, Flag, LSL #1 ;// strOffset = (Flag & 15) < 1; 93 … TST Flag, #0x20 ;// Computing (Flag & 0x20) to check, if we're done 94 … LDRBEQ Flag, [pSrc], #1 ;// Flag = (OMX_U8) *pSrc++, for next iteration
|
D | omxVCM4P10_TransformDequantChromaDCFromPair_s.s | 55 Flag RN 6 label 97 LDRB Flag, [pSrc], #1 ;// Preload <Flag> before <unpackLoop> 101 TST Flag, #0x10 ;// Computing (Flag & 0x10) 104 AND strOffset, cstOffset, Flag, LSL #1 ;// strOffset = (Flag & 15) < 1; 108 … TST Flag, #0x20 ;// Computing (Flag & 0x20) to check, if we're done 109 … LDRBEQ Flag, [pSrc], #1 ;// Flag = (OMX_U8) *pSrc++, for next iteration
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/ |
D | armVCM4P10_UnpackBlock4x4_s.s | 48 Flag RN 3 label 66 LDRB Flag, [pSrc], #1 ;// Preload <Flag> before <unpackLoop> 86 TST Flag, #0x10 ;// Computing (Flag & 0x10) 89 AND strOffset, cstOffset, Flag, LSL #1 ;// strOffset = (Flag & 15) < 1; 93 … TST Flag, #0x20 ;// Computing (Flag & 0x20) to check, if we're done 94 … LDRBEQ Flag, [pSrc], #1 ;// Flag = (OMX_U8) *pSrc++, for next iteration
|
D | omxVCM4P10_TransformDequantChromaDCFromPair_s.s | 52 Flag RN 6 label 89 LDRB Flag, [pSrc], #1 ;// Preload <Flag> before <unpackLoop> 94 TST Flag, #0x10 ;// Computing (Flag & 0x10) 97 AND strOffset, cstOffset, Flag, LSL #1 ;// strOffset = (Flag & 15) < 1; 101 … TST Flag, #0x20 ;// Computing (Flag & 0x20) to check, if we're done 102 … LDRBEQ Flag, [pSrc], #1 ;// Flag = (OMX_U8) *pSrc++, for next iteration
|
/frameworks/av/media/libstagefright/codecs/aacenc/basic_op/ |
D | typedef.h | 38 typedef int Flag; typedef 44 typedef int Flag; typedef 50 typedef int Flag; typedef 59 typedef int Flag; typedef
|
/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/ |
D | typedef.h | 39 typedef int Flag; typedef 45 typedef int Flag; typedef 51 typedef int Flag; typedef 60 typedef int Flag; typedef
|
/frameworks/av/media/libstagefright/codecs/amrnb/common/include/ |
D | int_lpc.h | 131 Flag *pOverflow 153 Flag *pOverflow 181 Flag *pOverflow 200 Flag *pOverflow
|
D | basic_op_c_equivalent.h | 119 static inline Word32 L_add(Word32 L_var1, Word32 L_var2, Flag *pOverflow) in L_add() 159 Flag *pOverflow) in L_sub() 200 __inline Word32 L_mac(Word32 L_var3, Word16 var1, Word16 var2, Flag *pOverflow) in L_mac() 248 static inline Word32 L_mult(Word16 var1, Word16 var2, Flag *pOverflow) in L_mult() 292 static inline Word32 L_msu(Word32 L_var3, Word16 var1, Word16 var2, Flag *pOverflow) in L_msu() 326 Flag *pOverflow) in Mpy_32() 399 Flag *pOverflow) in Mpy_32_16() 454 static inline Word16 mult(Word16 var1, Word16 var2, Flag *pOverflow) in mult()
|
D | basic_op_arm_v5.h | 119 __inline Word32 L_add(register Word32 L_var1, register Word32 L_var2, Flag *pOverflow) in L_add() 152 __inline Word32 L_sub(Word32 L_var1, Word32 L_var2, Flag *pOverflow) in L_sub() 190 __inline Word32 L_mac(Word32 L_var3, Word16 var1, Word16 var2, Flag *pOverflow) in L_mac() 223 __inline Word32 L_mult(Word16 var1, Word16 var2, Flag *pOverflow) in L_mult() 263 __inline Word32 L_msu(Word32 L_var3, Word16 var1, Word16 var2, Flag *pOverflow) in L_msu() 300 Word16 L_var2_lo, Flag *pOverflow) in Mpy_32() 356 Flag *pOverflow) in Mpy_32_16() 394 __inline Word16 mult(Word16 var1, Word16 var2, Flag *pOverflow) in mult()
|
D | basic_op_arm_gcc_v5.h | 121 __inline Word32 L_add(register Word32 L_var1, register Word32 L_var2, Flag *pOverflow) in L_add() 158 __inline Word32 L_sub(Word32 L_var1, Word32 L_var2, Flag *pOverflow) in L_sub() 197 static inline Word32 L_mac(Word32 L_var3, Word16 var1, Word16 var2, Flag *pOverflow) in L_mac() 241 __inline Word32 L_mult(Word16 var1, Word16 var2, Flag *pOverflow) in L_mult() 286 __inline Word32 L_msu(Word32 L_var3, Word16 var1, Word16 var2, Flag *pOverflow) in L_msu() 333 Flag *pOverflow) in Mpy_32() 416 Flag *pOverflow) in Mpy_32_16() 477 __inline Word16 mult(Word16 var1, Word16 var2, Flag *pOverflow) in mult()
|
D | vad1.h | 165 Flag *pOverflow 173 Flag *pOverflow 178 Flag *pOverflow 185 Flag *pOverflow
|
D | basic_op.h | 169 Flag *pOverflow) in Mac_32() 212 Flag *pOverflow) in Mac_32_16() 275 static inline Word16 shl(Word16 var1, Word16 var2, Flag *pOverflow) in shl() 327 static inline Word32 L_shl(Word32 L_var1, Word16 var2, Flag *pOverflow) in L_shl() 380 static inline Word32 L_shr(Word32 L_var1, Word16 var2, Flag *pOverflow) in L_shr()
|
D | vad2.h | 178 Flag LTP_flag; /* Use to indicate the the LTP gain is > LTP_THRESH */ 185 Word16 vad2(Word16 *farray_ptr, vadState2 *st, Flag *pOverflow); 190 void r_fft(Word16 *farray_ptr, Flag *pOverflow); 192 void LTP_flag_update(vadState2 *st, Word16 mode, Flag *pOverflow);
|
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/ |
D | ec_gains.h | 139 Flag *pOverflow 154 Flag *pOverflow 184 Flag *pOverflow 199 Flag *pOverflow
|
D | agc.cpp | 171 Flag *pOverflow /* overflow: flag to indicate overflow */ in energy_old() 258 Word32 energy_old_Wrapper(Word16 in[], Word16 l_trm, Flag *pOverflow) in energy_old_Wrapper() 373 Flag *pOverflow /* i : overflow flag */ in energy_new() 379 Flag ov_save; in energy_new() 478 Word32 energy_new_Wrapper(Word16 in[], Word16 l_trm, Flag *pOverflow) in energy_new_Wrapper() 743 Flag *pOverflow /* i : overflow Flag */ in agc() 967 Flag *pOverflow /* i : overflow flag */ in agc2()
|
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/ |
D | ton_stab.h | 131 Flag *pOverflow 136 Flag *pOverflow 141 Flag *pOverflow
|
D | pitch_ol.cpp | 304 Flag dtx, /* i : dtx flag; use dtx=1, do not use dtx=0 */ in Lag_max() 305 Flag *pOverflow /* i/o : overflow Flag */ in Lag_max() 318 Flag dtx, /* i : dtx flag; use dtx=1, do not use dtx=0 */ in Lag_max() 319 Flag *pOverflow /* i/o : overflow Flag */ in Lag_max() 620 Flag dtx, /* i : dtx flag; use dtx=1, do not use dtx=0 */ in Lag_max_wrapper() 621 Flag *pOverflow /* i/o : overflow Flag */ in Lag_max_wrapper() 643 Flag dtx, /* i : dtx flag; use dtx=1, do not use dtx=0 */ in Lag_max_wrapper() 644 Flag *pOverflow /* i/o : overflow Flag */ in Lag_max_wrapper() 948 Flag dtx, /* i : dtx flag; use dtx=1, do not use dtx=0 */ in Pitch_ol() 949 Flag *pOverflow /* i/o : overflow Flag */ in Pitch_ol()
|
D | calc_en.h | 127 Flag *pOverflow 165 Flag *pOverflow 180 Flag *pOverflow
|