HomeSort by relevance Sort by last modified time
    Searched full:constant (Results 226 - 250 of 9298) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/glsl/tests/lower_jumps/
lower_returns_sub_false.opt_test 11 ((if (expression bool > (var_ref a) (constant float (0.000000)))
12 ((if (expression bool > (var_ref b) (constant float (0.000000)))
lower_returns_sub_true.opt_test 11 ((if (expression bool > (var_ref a) (constant float (0.000000)))
12 ((if (expression bool > (var_ref b) (constant float (0.000000)))
return_void_at_end_of_loop_lower_nothing.opt_test 12 ((assign (x) (var_ref a) (constant float (1.000000))) (return)))
13 (assign (x) (var_ref b) (constant float (2.000000)))))))
return_void_at_end_of_loop_lower_return.opt_test 12 ((assign (x) (var_ref a) (constant float (1.000000))) (return)))
13 (assign (x) (var_ref b) (constant float (2.000000)))))))
return_void_at_end_of_loop_lower_return_and_break.opt_test 12 ((assign (x) (var_ref a) (constant float (1.000000))) (return)))
13 (assign (x) (var_ref b) (constant float (2.000000)))))))
  /external/proguard/src/proguard/classfile/constant/
FieldrefConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a field reference constant in the constant pool.
43 * @param u2classIndex the index of the class in the constant pool.
44 * @param u2nameAndTypeIndex the index of the name and type entry in the constant pool.
60 // Implementations for Constant.
InterfaceMethodrefConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a interface method reference constant in the constant pool.
43 * @param u2classIndex the index of the class in the constant pool.
44 * @param u2nameAndTypeIndex the index of the name and type entry in the constant pool.
60 // Implementations for Constant.
MethodrefConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a method reference constant in the constant pool.
43 * @param u2classIndex the index of the class in the constant pool.
44 * @param u2nameAndTypeIndex the index of the name and type entry in the constant pool.
60 // Implementations for Constant.
  /libcore/luni/src/main/java/java/lang/
EnumConstantNotPresentException.java 20 * Thrown if an {@code enum} constant does not exist for a particular name.
36 * missing constant name.
41 * the missing constant name.
45 super("enum constant " + enumType.getName() + "." + constantName + " is missing");
51 * Gets the enum type for which the constant name is missing.
53 * @return the enum type for which a constant name has not been found.
61 * Gets the name of the missing constant.
63 * @return the name of the constant that has not been found in the enum
  /external/clang/test/CodeGenObjC/
ns-constant-strings.m 1 // RUN: %clang_cc1 -triple i386-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -fno-constant-cfstrings -emit-llvm -o %t %s
4 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fno-constant-cfstrings -emit-llvm -o %t %s
35 // CHECK-FRAGILE: @.str = private unnamed_addr constant [6 x i8] c"MyApp\00"
36 // CHECK-FRAGILE: @.str1 = private unnamed_addr constant [7 x i8] c"MyApp1\00"
38 // CHECK-NONFRAGILE: @.str = private unnamed_addr constant [6 x i8] c"MyApp\00"
39 // CHECK-NONFRAGILE: @.str1 = private unnamed_addr constant [7 x i8] c"MyApp1\00"
  /external/clang/test/Sema/
ext_vector_comparisons.c 9 return vec == vec; // expected-warning{{self-comparison always evaluates to a constant}}
10 return vec != vec; // expected-warning{{self-comparison always evaluates to a constant}}
11 return vec < vec; // expected-warning{{self-comparison always evaluates to a constant}}
12 return vec <= vec; // expected-warning{{self-comparison always evaluates to a constant}}
13 return vec > vec; // expected-warning{{self-comparison always evaluates to a constant}}
14 return vec >= vec; // expected-warning{{self-comparison always evaluates to a constant}}
  /external/clang/test/SemaCXX/
warn-bool-conversion.cpp 3 int* j = false; // expected-warning{{initialization of pointer of type 'int *' to null from a constant boolean expression}}
5 void foo(int* i, int *j=(false)) // expected-warning{{initialization of pointer of type 'int *' to null from a constant boolean expression}}
7 foo(false); // expected-warning{{initialization of pointer of type 'int *' to null from a constant boolean expression}}
11 foo(false == true); // expected-warning{{initialization of pointer of type 'int *' to null from a constant boolean expression}}
12 foo((42 + 24) < 32); // expected-warning{{initialization of pointer of type 'int *' to null from a constant boolean expression}}
15 foo(kFlag); // expected-warning{{initialization of pointer of type 'int *' to null from a constant boolean expression}}
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
CompLim.h 44 LVM_INT16 Norm_Attack; /* Attack time constant of the Normaliser integrator */
45 LVM_INT16 Norm_Decay; /* Decay time constant of the Normaliser integrator */
52 LVM_INT16 Comp_Attack_S; /* Attack time constant of the slow integrator */
53 LVM_INT16 Comp_Decay_S; /* Decay time constant of slow the integrator */
54 LVM_INT16 Comp_Attack_F; /* Attack time constant of fast the integrator */
55 LVM_INT16 Comp_Decay_F; /* Decay time constant of fast the integrator */
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Plane.java 40 * <code>Plane</code> defines a plane where Normal dot (x,y,z) = Constant.
67 * Constant of the plane. See formula in class definition.
69 protected float constant; field in class:Plane
73 * default object and contains a normal of (0,0,0) and a constant of 0.
80 * and constant values are set at creation.
84 * @param constant
85 * the constant of the plane.
87 public Plane(Vector3f normal, float constant) {
93 this.constant = constant;
    [all...]
  /external/clang/test/CXX/expr/expr.const/
p2-0x.cpp 3 // A conditional-expression is a core constant expression unless it involves one
6 // - this (5.1.1 [expr.prim.general]) [Note: when evaluating a constant
25 int n : f(); // expected-error {{constant expression}} expected-note {{non-constexpr function 'f' cannot be used in a constant expression}}
33 int m : NonConstexpr2().n; // expected-error {{constant expression}} expected-note {{undefined constructor 'NonConstexpr2'}}
40 int n : NonConstexpr4().n; // expected-error {{constant expression}} expected-note {{non-constexpr constructor 'NonConstexpr4' cannot be used in a constant expression}}
48 int undefinedConstexpr2 : undefinedConstexpr1(); // expected-error {{constant expression}} expected-note {{undefined function 'undefinedConstexpr1' cannot be used in a constant expression}}
52 // by function invocation substitution (7.1.5), do not produce a core constant
    [all...]
  /external/clang/test/CodeGenCXX/
visibility-ms-compat.cpp 29 // CHECK-GLOBAL: @_ZTSN5test01AE = linkonce_odr constant
30 // CHECK-GLOBAL: @_ZTIN5test01AE = linkonce_odr unnamed_addr constant
31 // CHECK-GLOBAL: @_ZN5test02tiE = hidden constant
45 // CHECK-GLOBAL: @_ZTSN5test11AE = linkonce_odr hidden constant
46 // CHECK-GLOBAL: @_ZTIN5test11AE = linkonce_odr hidden unnamed_addr constant
47 // CHECK-GLOBAL: @_ZN5test12tiE = hidden constant
61 // CHECK-GLOBAL: @_ZTSN5test21AE = linkonce_odr constant
62 // CHECK-GLOBAL: @_ZTIN5test21AE = linkonce_odr unnamed_addr constant
63 // CHECK-GLOBAL: @_ZN5test22tiE = hidden constant
78 // CHECK-GLOBAL: @_ZTSN5test31BINS_1AEEE = linkonce_odr constant
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/
cmath 52 // Constant @f$ \pi @f$.
54 // Constant @f$ \pi / 2 @f$.
56 // Constant @f$ \pi / 3 @f$.
58 // Constant @f$ \pi / 4 @f$.
60 // Constant @f$ \sqrt(\pi / 2) @f$.
62 // Constant @f$ 1 / \pi @f$.
64 // Constant @f$ 2 / \pi @f$.
66 // Constant @f$ 2 / \sqrt(\pi) @f$.
69 // Constant Euler's number @f$ e @f$.
71 // Constant @f$ 1 / e @f$
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
asm_util.h 34 "DCL SAMP[0], CONSTANT\n"
35 "DCL OUT[0], COLOR, CONSTANT\n"
44 "DCL CONST[0], CONSTANT\n"
45 "DCL SAMP[0..1], CONSTANT\n"
46 "DCL TEMP[0..3], CONSTANT\n"
47 "DCL OUT[0], COLOR, CONSTANT\n"
61 "DCL CONST[0], CONSTANT\n"
62 "DCL SAMP[0..1], CONSTANT\n"
63 "DCL TEMP[0..1], CONSTANT\n"
64 "DCL OUT[0], COLOR, CONSTANT\n
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
asm_util.h 34 "DCL SAMP[0], CONSTANT\n"
35 "DCL OUT[0], COLOR, CONSTANT\n"
44 "DCL CONST[0], CONSTANT\n"
45 "DCL SAMP[0..1], CONSTANT\n"
46 "DCL TEMP[0..3], CONSTANT\n"
47 "DCL OUT[0], COLOR, CONSTANT\n"
61 "DCL CONST[0], CONSTANT\n"
62 "DCL SAMP[0..1], CONSTANT\n"
63 "DCL TEMP[0..1], CONSTANT\n"
64 "DCL OUT[0], COLOR, CONSTANT\n
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1/
special_function_util.h 62 /// Constant @f$ \pi @f$.
65 /// Constant @f$ \pi / 2 @f$.
68 /// Constant @f$ \pi / 3 @f$.
71 /// Constant @f$ \pi / 4 @f$.
74 /// Constant @f$ 1 / \pi @f$.
77 /// Constant @f$ 2 / \sqrt(\pi) @f$.
80 /// Constant @f$ \sqrt(2) @f$.
83 /// Constant @f$ \sqrt(3) @f$.
86 /// Constant @f$ \sqrt(\pi/2) @f$.
89 /// Constant @f$ 1 / sqrt(2) @f$
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/tr1/
special_function_util.h 62 /// Constant @f$ \pi @f$.
65 /// Constant @f$ \pi / 2 @f$.
68 /// Constant @f$ \pi / 3 @f$.
71 /// Constant @f$ \pi / 4 @f$.
74 /// Constant @f$ 1 / \pi @f$.
77 /// Constant @f$ 2 / \sqrt(\pi) @f$.
80 /// Constant @f$ \sqrt(2) @f$.
83 /// Constant @f$ \sqrt(3) @f$.
86 /// Constant @f$ \sqrt(\pi/2) @f$.
89 /// Constant @f$ 1 / sqrt(2) @f$
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/tr1/
special_function_util.h 62 /// Constant @f$ \pi @f$.
65 /// Constant @f$ \pi / 2 @f$.
68 /// Constant @f$ \pi / 3 @f$.
71 /// Constant @f$ \pi / 4 @f$.
74 /// Constant @f$ 1 / \pi @f$.
77 /// Constant @f$ 2 / \sqrt(\pi) @f$.
80 /// Constant @f$ \sqrt(2) @f$.
83 /// Constant @f$ \sqrt(3) @f$.
86 /// Constant @f$ \sqrt(\pi/2) @f$.
89 /// Constant @f$ 1 / sqrt(2) @f$
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/tr1/
special_function_util.h 62 /// Constant @f$ \pi @f$.
65 /// Constant @f$ \pi / 2 @f$.
68 /// Constant @f$ \pi / 3 @f$.
71 /// Constant @f$ \pi / 4 @f$.
74 /// Constant @f$ 1 / \pi @f$.
77 /// Constant @f$ 2 / \sqrt(\pi) @f$.
80 /// Constant @f$ \sqrt(2) @f$.
83 /// Constant @f$ \sqrt(3) @f$.
86 /// Constant @f$ \sqrt(\pi/2) @f$.
89 /// Constant @f$ 1 / sqrt(2) @f$
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/tr1/
special_function_util.h 62 /// Constant @f$ \pi @f$.
65 /// Constant @f$ \pi / 2 @f$.
68 /// Constant @f$ \pi / 3 @f$.
71 /// Constant @f$ \pi / 4 @f$.
74 /// Constant @f$ 1 / \pi @f$.
77 /// Constant @f$ 2 / \sqrt(\pi) @f$.
80 /// Constant @f$ \sqrt(2) @f$.
83 /// Constant @f$ \sqrt(3) @f$.
86 /// Constant @f$ \sqrt(\pi/2) @f$.
89 /// Constant @f$ 1 / sqrt(2) @f$
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/tr1/
special_function_util.h 62 /// Constant @f$ \pi @f$.
65 /// Constant @f$ \pi / 2 @f$.
68 /// Constant @f$ \pi / 3 @f$.
71 /// Constant @f$ \pi / 4 @f$.
74 /// Constant @f$ 1 / \pi @f$.
77 /// Constant @f$ 2 / \sqrt(\pi) @f$.
80 /// Constant @f$ \sqrt(2) @f$.
83 /// Constant @f$ \sqrt(3) @f$.
86 /// Constant @f$ \sqrt(\pi/2) @f$.
89 /// Constant @f$ 1 / sqrt(2) @f$
    [all...]

Completed in 831 milliseconds

1 2 3 4 5 6 7 8 91011>>