HomeSort by relevance Sort by last modified time
    Searched full:m_zero (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/audio/
ZeroPole.h 41 : m_zero(0)
53 void setZero(float zero) { m_zero = zero; }
56 float zero() const { return m_zero; }
60 float m_zero; member in class:WebCore::ZeroPole
ZeroPole.cpp 41 float zero = m_zero;
  /external/clang/test/Analysis/
malloc-three-arg.c 5 #define M_ZERO 0x0100
19 list = malloc(sizeof(*list) * 10, NULL, M_ZERO);
  /external/libhevc/common/x86/
ihevc_chroma_intra_pred_filters_sse42_intr.c 290 __m128i m_zero = _mm_set1_epi32(0); local
353 src_temp4 = _mm_hadd_epi16(src_temp4, m_zero);
354 src_temp4 = _mm_hadd_epi16(src_temp4, m_zero);
382 src_temp4 = _mm_hadd_epi16(src_temp4, m_zero);
383 src_temp4 = _mm_hadd_epi16(src_temp4, m_zero);
403 src_temp4 = _mm_hadd_epi16(src_temp4, m_zero);
404 src_temp4 = _mm_hadd_epi16(src_temp4, m_zero);
ihevc_itrans_recon_ssse3_intr.c 153 __m128i m_zero = _mm_setzero_si128(); local
167 m_ge_zero16b_flag_row0 = _mm_cmpgt_epi16(m_zero, m_temp_reg_0);
168 m_ge_zero16b_flag_row1 = _mm_cmpgt_epi16(m_zero, m_temp_reg_1);
169 m_ge_zero16b_flag_row2 = _mm_cmpgt_epi16(m_zero, m_temp_reg_2);
170 m_ge_zero16b_flag_row3 = _mm_cmpgt_epi16(m_zero, m_temp_reg_3);
314 m_ge_zero16b_flag_row0 = _mm_cmpgt_epi16(m_zero, m_temp_reg_30);
315 m_ge_zero16b_flag_row1 = _mm_cmpgt_epi16(m_zero, m_temp_reg_31);
452 m_temp_reg_0 = _mm_unpacklo_epi8(m_temp_reg_0, m_zero);
453 m_temp_reg_1 = _mm_unpacklo_epi8(m_temp_reg_1, m_zero);
454 m_temp_reg_2 = _mm_unpacklo_epi8(m_temp_reg_2, m_zero);
583 __m128i m_zero = _mm_setzero_si128(); local
    [all...]
ihevc_chroma_intra_pred_filters_ssse3_intr.c 311 __m128i m_zero = _mm_set1_epi32(0); local
349 src_temp5 = _mm_unpacklo_epi8(src_temp3, m_zero);
350 src_temp6 = _mm_unpacklo_epi8(src_temp4, m_zero);
351 src_temp9 = _mm_unpacklo_epi8(src_temp7, m_zero);
352 src_temp10 = _mm_unpacklo_epi8(src_temp8, m_zero);
359 src_temp3 = _mm_unpacklo_epi8(src_temp3, m_zero);
360 src_temp4 = _mm_unpacklo_epi8(src_temp4, m_zero);
361 src_temp7 = _mm_unpacklo_epi8(src_temp7, m_zero);
362 src_temp8 = _mm_unpacklo_epi8(src_temp8, m_zero);
374 src_temp4 = _mm_hadd_epi16(src_temp4, m_zero);
    [all...]
ihevc_intra_pred_filters_sse42_intr.c 412 __m128i m_zero = _mm_set1_epi32(0); local
453 src_temp3 = _mm_sad_epu8(src_temp3, m_zero);
454 src_temp4 = _mm_sad_epu8(src_temp4, m_zero);
455 src_temp7 = _mm_sad_epu8(src_temp7, m_zero);
456 src_temp8 = _mm_sad_epu8(src_temp8, m_zero);
463 src_temp4 = _mm_hadd_epi16(src_temp4, m_zero);
541 src_temp4 = _mm_hadd_epi16(src_temp4, m_zero);
542 src_temp4 = _mm_hadd_epi16(src_temp4, m_zero);
543 src_temp4 = _mm_hadd_epi16(src_temp4, m_zero);
603 src_temp4 = _mm_sad_epu8(src_temp3, m_zero);
    [all...]
ihevc_intra_pred_filters_ssse3_intr.c 1072 __m128i m_zero = _mm_setzero_si128(); local
    [all...]
  /external/eigen/Eigen/src/SparseCore/
AmbiVector.h 31 : m_buffer(0), m_zero(0), m_size(0), m_allocatedSize(0), m_allocatedElements(0), m_mode(-1)
109 Scalar m_zero; member in class:Eigen::internal::AmbiVector
261 return m_zero;
272 return m_zero;
  /external/chromium_org/third_party/usrsctp/usrsctplib/
user_malloc.h 54 #define M_ZERO 0x0100 /* bzero the allocation */
186 /* Using memset if flag M_ZERO is specified. Todo: M_WAITOK and M_NOWAIT */
190 if(flags & M_ZERO) { \
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp 417 if (match(FCmp, m_Zero()))
427 if (match(FCmp, m_One()) && match(TCmp, m_Zero()))
538 if (match(Op1, m_Zero()))
672 if (match(Op1, m_Zero()))
797 if (match(Op1, m_Zero()) &&
    [all...]
  /external/llvm/include/llvm/IR/
PatternMatch.h 135 /// m_Zero() - Match an arbitrary zero/null constant. This includes
137 inline match_zero m_Zero() { return match_zero(); }
158 return m_CombineOr(m_Zero(), m_NegZero());
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
UnixAPIChecker.cpp 83 // See also: MallocChecker.cpp / M_ZERO.
MallocChecker.cpp 261 // Check if this malloc() for special flags. At present that means M_ZERO or
593 // One of the possible flags is M_ZERO, which means 'give me back an
619 // FIXME: We need a more general way of getting the M_ZERO value.
623 // know M_ZERO.
656 // If M_ZERO is set, treat this like calloc (initialized).
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp     [all...]
InstCombineSelect.cpp 408 if (!match(CmpRHS, m_Zero()))
759 if (!match(IC->getOperand(1), m_Zero()))
    [all...]
InstructionCombining.cpp     [all...]
InstCombineMulDivRem.cpp     [all...]
InstCombineCompares.cpp     [all...]
InstCombineAndOrXor.cpp     [all...]
  /external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
sctp_os_userspace.h 689 MALLOC(var, type, size, M_SONAME, (M_WAITOK | M_ZERO)); \
    [all...]
sctp_sysctl.c 135 MALLOC(SCTP_BASE_SYSCTL(sctp_log), struct sctp_log *, sizeof(struct sctp_log), M_SYSCTL, M_ZERO);
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]

Completed in 536 milliseconds