Searched defs:is_const (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dloop_analysis.h202 const bool is_const = (this->num_assignments == 0) local
216 assert(!this->var->read_only || (this->var->read_only && is_const));
218 return is_const;
/external/eigen/Eigen/src/Core/util/
H A DMeta.h74 template <typename T> struct is_const { enum { value = 0 }; }; struct in namespace:Eigen::internal
75 template <typename T> struct is_const<T const> { enum { value = 1 }; }; struct in namespace:Eigen::internal
/external/mesa3d/src/glsl/
H A Dloop_analysis.h202 const bool is_const = (this->num_assignments == 0) local
216 assert(!this->var->read_only || (this->var->read_only && is_const));
218 return is_const;
/external/clang/test/SemaTemplate/
H A Dtemp_class_spec.cpp35 struct is_const { struct
40 struct is_const<const T> { struct
44 int is_const0[is_const<int>::value? -1 : 1];
45 int is_const1[is_const<const int>::value? 1 : -1];
46 int is_const2[is_const<const volatile int>::value? 1 : -1];
47 int is_const3[is_const<const int [3]>::value? 1 : -1];
48 int is_const4[is_const<const volatile int[3]>::value? 1 : -1];
49 int is_const5[is_const<volatile int[3]>::value? -1 : 1];
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dr600_asm.c727 static int is_const(int sel) function
773 if (is_const(sel)) { /* Any constant, including literal and inline constants. */
/external/libpcap/
H A Doptimize.c558 int is_const; member in struct:vmapinfo
596 vmap[val].is_const = 1;
843 if (vmap[val].is_const) {
913 if (vmap[val].is_const && BPF_SRC(b->s.code) == BPF_K) {
973 if (alter && vmap[v].is_const) {
1005 if (alter && vmap[val[A_ATOM]].is_const) {
1040 if (vmap[val[A_ATOM]].is_const) {
1058 if (alter && vmap[val[X_ATOM]].is_const) {
1059 if (vmap[val[A_ATOM]].is_const) {
1079 if (alter && vmap[val[A_ATOM]].is_const
[all...]
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_asm.c727 static int is_const(int sel) function
773 if (is_const(sel)) { /* Any constant, including literal and inline constants. */
/external/chromium_org/v8/src/
H A Druntime.cc1981 bool is_const = value->IsTheHole(); local
1983 ASSERT(is_var + is_const + is_function == 1);
1985 if (is_var || is_const) {
2025 if (is_const || (is_native && is_function)) {
H A Dparser.cc1836 bool is_const = false; local
1872 is_const = true;
1949 is_const ? Interface::NewConst() : Interface::NewValue();
1990 Scope* initialization_scope = is_const ? declaration_scope : top_scope_;
2047 if (is_const) {
2124 if (nvars == 1 && !is_const) {
2715 bool is_const = peek() == Token::CONST; local
2726 is_const ? Interface::NewConst() : Interface::NewValue();
/external/clang/test/SemaCXX/
H A Dtype-traits.cpp842 void is_const() function
/external/v8/src/
H A Dparser.cc2073 bool is_const = false; local
2109 is_const = true;
2225 Scope* initialization_scope = is_const ? declaration_scope : top_scope_;
2280 if (is_const) {
2354 if (nvars == 1 && !is_const) {

Completed in 1988 milliseconds