HomeSort by relevance Sort by last modified time
    Searched defs:is_float (Results 1 - 15 of 15) sorted by null

  /art/runtime/
vmap_table.h 62 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg); local
76 if ((adjusted_entry == adjusted_vreg) && (in_floats == is_float)) {
98 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg); local
100 if (UNLIKELY(is_float)) {
stack.cc 166 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg); local
167 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
170 bool success = is_float ? GetFPR(reg, &ptr_val) : GetGPR(reg, &ptr_val);
221 bool is_float = (kind_lo == kDoubleLoVReg); local
222 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
226 bool success = is_float ? GetFPR(reg_lo, &ptr_val_lo) : GetGPR(reg_lo, &ptr_val_lo);
227 success &= is_float ? GetFPR(reg_hi, &ptr_val_hi) : GetGPR(reg_hi, &ptr_val_hi);
267 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg); local
268 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
277 bool success = is_float ? GetFPR(reg, &old_reg_val) : GetGPR(reg, &old_reg_val)
332 bool is_float = (kind_lo == kDoubleLoVReg); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format_parse.py 179 def is_float(self): member in class:Format
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_parse.py 179 def is_float(self): member in class:Format
  /external/opencv/cv/src/
cvgeometry.cpp 177 int is_float; local
205 is_float = CV_SEQ_ELTYPE(contour) == CV_32FC2;
208 if( !is_float && !measure_dist && (ip.x = cvRound(pt.x)) == pt.x && (ip.y = cvRound(pt.y)) == pt.y )
245 if( is_float )
261 if( is_float )
298 if( is_float )
cvconvhull.cpp 250 int is_float; local
327 is_float = CV_SEQ_ELTYPE(ptseq) == CV_32FC2;
329 sklansky = !is_float ? (sklansky_func)icvSklansky_32s :
345 if( !is_float )
cvmoments.cpp 87 int is_float = CV_SEQ_ELTYPE(contour) == CV_32FC2; local
100 if( !is_float )
117 if( !is_float )
cvshapedescr.cpp 80 int is_float = CV_SEQ_ELTYPE( contour ) == CV_32FC2; local
96 if( !is_float )
301 int is_float; local
324 is_float = CV_SEQ_ELTYPE(sequence) == CV_32FC2;
326 if( !is_float )
391 if( !is_float )
424 if( !is_float )
463 int is_float = CV_SEQ_ELTYPE(contour) == CV_32FC2; local
467 if( !is_float )
483 if( !is_float )
794 int is_float = CV_SEQ_ELTYPE(points) == CV_32FC2; local
1017 int i, is_float; local
1275 int is_float = CV_SEQ_ELTYPE(ptseq) == CV_32FC2; local
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
tokenizer.cc 413 bool is_float = false; local
430 is_float = true;
436 is_float = true;
442 is_float = true;
448 is_float = true;
455 if (is_float) {
463 return is_float ? TYPE_FLOAT : TYPE_INTEGER;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
glsl_types.h 348 bool is_float() const function in struct:glsl_type
  /external/mesa3d/src/glsl/
glsl_types.h 348 bool is_float() const function in struct:glsl_type
  /external/clang/test/CXX/drs/
dr4xx.cpp 375 template<typename T> struct is_float;
376 template<> struct is_float<float> { typedef void type; }; struct in namespace:dr425
379 template<typename T, typename U = typename is_float<T>::type> operator T() const; // expected-error 0-1{{extension}}
  /art/oatdump/
oatdump.cc 650 void DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) {
657 if (is_float) {
707 bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg); local
708 uint32_t spill_mask = is_float ? oat_method.GetFpSpillMask()
710 os << (is_float ? "fr" : "r") << vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
    [all...]
  /external/chromium_org/third_party/simplejson/
_speedups.c 1503 int is_float = 0; local
1606 int is_float = 0; local
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
PyrexTypes.py 146 # is_float boolean Is a C floating point type
202 is_float = 0 variable in class:PyrexType
270 return (self.is_int or self.is_float or self.is_complex or self.is_pyobject or
389 elif base_type.is_float:
411 elif base_type.is_float:
1643 is_float = 1 variable in class:CFloatType
    [all...]

Completed in 500 milliseconds