HomeSort by relevance Sort by last modified time
    Searched refs:USED (Results 1 - 25 of 34) sorted by null

1 2

  /external/proguard/src/proguard/obfuscate/
AttributeUsageMarker.java 39 // A visitor info flag to indicate the attribute is being used.
40 private static final Object USED = new Object();
54 * Marks the given VisitorAccepter as being used (or useful).
59 visitorAccepter.setVisitorInfo(USED);
64 * Returns whether the given VisitorAccepter has been marked as being used.
69 return visitorAccepter.getVisitorInfo() == USED;
NameAndTypeUsageMarker.java 33 * being used in the program classes it visits.
45 // A visitor info flag to indicate the NameAndType constant pool entry is being used.
46 private static final Object USED = new Object();
118 * Marks the given VisitorAccepter as being used.
123 visitorAccepter.setVisitorInfo(USED);
128 * Returns whether the given VisitorAccepter has been marked as being used.
133 return visitorAccepter.getVisitorInfo() == USED;
Utf8UsageMarker.java 36 * being used in the program classes it visits.
54 // A visitor info flag to indicate the UTF-8 constant pool entry is being used.
55 private static final Object USED = new Object();
375 * Marks the given VisitorAccepter as being used.
380 visitorAccepter.setVisitorInfo(USED);
385 * Returns whether the given VisitorAccepter has been marked as being used.
390 return visitorAccepter.getVisitorInfo() == USED;
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_test_utils.h 28 # define USED
31 # define USED __attribute__((used))
  /external/dropbear/libtommath/mtest/
mpi.c 38 This table is used to compute output lengths for the mp_toradix()
68 can be contained in an mp_digit. Thus, an mp_word is used. These
122 otherwise, suitable macro definitions will be used. This works
288 USED(mp) = 1;
314 if((DIGITS(mp) = s_mp_alloc(USED(from), sizeof(mp_digit))) == NULL)
317 s_mp_copy(DIGITS(from), DIGITS(mp), USED(from));
318 USED(mp) = USED(from);
319 ALLOC(mp) = USED(from);
350 all the used digits of 'from', we'll re-use it to avoid hittin
2972 mp_size used; local
3091 mp_size ix = 1, used = USED(mp); local
3126 mp_size ix = 1, used = USED(mp); local
3269 mp_size ix, used = USED(b); local
3326 mp_size ix, used = USED(b); local
3516 mp_size ix, jx, kx, used = USED(a); local
    [all...]
mpi.h 57 #define USED(MP) ((MP)->used)
77 mp_size used; /* how many digits used */ member in struct:__anon19213
  /development/build/tools/
mk_sdk_repo_xml.sh 97 # source.properties | to repository.xml | where XML can be used
221 local USED
238 if [[ "${USED/$DST/}" == "$USED" ]]; then
239 USED="$USED $DST"
  /external/compiler-rt/lib/tsan/rtl/
tsan_defs.h 101 static inline void USED build_consistency() {
tsan_rtl.cc 392 ALWAYS_INLINE USED
487 ALWAYS_INLINE USED
631 ALWAYS_INLINE USED
661 ALWAYS_INLINE USED
tsan_interface_java.cc 104 static uptr USED getmem(BlockDesc *b) {
  /frameworks/base/core/java/android/text/method/
MetaKeyKeyListener.java 34 * This class provides two mechanisms for tracking meta state that can be used
62 * To ensure correct meta key behavior, the following pattern should be used
108 // These bits are privately used by the meta key key listener.
299 content.setSpan(what, 0, 0, USED);
352 else if (state == USED)
405 if (current == USED)
561 long locked, long pressed, long released, long used) {
566 } else if ((state & used) != 0) {
599 long pressed, long released, long used, KeyEvent event) {
602 if ((state & used) != 0)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
compiler.h 144 * PUBLIC/USED macros
149 * We also need to define a USED attribute, so the optimizer doesn't
155 # define USED __attribute__((used))
158 # define USED
192 * The __FUNCTION__ gcc variable is generally only used for debugging.
227 * For now, only used by some DRI hardware drivers for color/texel packing.
291 /* Turn off macro checking systems used by other libraries */
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_internal_defs.h 11 // It contains macro used in run-time libraries code.
94 // parameter will be used in the future to hold a structure with functions
130 # define USED
146 # define USED __attribute__((used))
281 // FIXME: This macro is still used when printing error reports though it's not
  /external/mesa3d/src/mesa/main/
compiler.h 144 * PUBLIC/USED macros
149 * We also need to define a USED attribute, so the optimizer doesn't
155 # define USED __attribute__((used))
158 # define USED
192 * The __FUNCTION__ gcc variable is generally only used for debugging.
227 * For now, only used by some DRI hardware drivers for color/texel packing.
291 /* Turn off macro checking systems used by other libraries */
  /external/proguard/src/proguard/shrink/
UsageMarker.java 39 * elements that are being used.
61 // A visitor info flag to indicate the ProgramMember object is being used,
62 // if its Clazz can be determined as being used as well.
64 // A visitor info flag to indicate the visitor accepter is being used.
65 private static final Object USED = new Object();
120 // Process all class members that have already been marked as possibly used.
136 // if this class is being used, all of its methods will be used as
166 * This ClassVisitor marks ProgramClass objects as possibly used,
226 // Note that, if the method has been marked as possibly used,
    [all...]
  /external/dropbear/
buffer.c 184 * the next len bytes from that position can be used */
193 /* like buf_getptr, but checks against total size, not used length.
194 * This allows writing past the used length, but not past the size */
226 /* Just increment the buffer position the same as if we'd used buf_getstring,
280 if (USED(mp) == 1 && DIGIT(mp, 0) == 0) {
  /external/compiler-rt/lib/asan/tests/
asan_str_test.cc 15 // Used for string functions tests
173 USED static void RunStrChrTest(PointerToStrChr1 StrChr) {
189 USED static void RunStrChrTest(PointerToStrChr2 StrChr) {
  /external/eigen/blas/
drotmg.f 27 * INEXACT. THIS IS OK AS THEY ARE ONLY USED FOR TESTING THE SIZE
srotmg.f 27 * INEXACT. THIS IS OK AS THEY ARE ONLY USED FOR TESTING THE SIZE
  /external/dropbear/libtommath/
tommath.h 180 int used, alloc, sign; member in struct:__anon19216
188 #define USED(m) ((m)->used)
221 #define mp_iszero(a) (((a)->used == 0) ? MP_YES : MP_NO)
222 #define mp_iseven(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 0)) ? MP_YES : MP_NO)
223 #define mp_isodd(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ? MP_YES : MP_NO)
395 /* used to setup the Barrett reduction for a given modulus b */
555 #define s_mp_mul(a, b, c) s_mp_mul_digs(a, b, c, (a)->used + (b)->used + 1)
  /prebuilts/tools/common/proguard/proguard4.7/lib/
proguard.jar 
  /external/eigen/blas/testing/
cblat2.f 13 * -1 UNIT NUMBER OF SNAPSHOT FILE (NOT USED IF .LT. 0)
372 $ 'OLLOWING PARAMETER VALUES WILL BE USED:' )
    [all...]
dblat2.f 13 * -1 UNIT NUMBER OF SNAPSHOT FILE (NOT USED IF .LT. 0)
367 $ 'OLLOWING PARAMETER VALUES WILL BE USED:' )
    [all...]
dblat3.f 13 * -1 UNIT NUMBER OF SNAPSHOT FILE (NOT USED IF .LT. 0)
333 $ 'OLLOWING PARAMETER VALUES WILL BE USED:' )
    [all...]
sblat2.f 13 * -1 UNIT NUMBER OF SNAPSHOT FILE (NOT USED IF .LT. 0)
367 $ 'OLLOWING PARAMETER VALUES WILL BE USED:' )
    [all...]

Completed in 557 milliseconds

1 2