Searched defs:CB (Results 1 - 21 of 21) sorted by relevance

/external/eigen/blas/
H A Dlsame.f1 LOGICAL FUNCTION LSAME(CA,CB)
8 CHARACTER CA,CB local in function:LSAME
14 * LSAME returns .TRUE. if CA is the same letter as CB regardless of
22 * CB (input) CHARACTER*1
23 * CA and CB specify the single characters to be compared.
36 LSAME = CA .EQ. CB
49 INTB = ICHAR(CB)
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dsplit_vq.c33 int16_t *CB, /* (i) the quantizer codebook in Q13 */
44 CBPtr=CB;
28 WebRtcIlbcfix_SplitVq( int16_t *qX, int16_t *index, int16_t *X, int16_t *CB, int16_t *dim, int16_t *cbsize ) argument
H A Dcb_mem_energy.c31 int16_t *CB, /* (i) The CB memory (1:st section) */
32 int16_t *filteredCB, /* (i) The filtered CB memory (2:nd section) */
33 int16_t lMem, /* (i) Length of the CB memory */
35 int16_t *energyW16, /* (o) Energy in the CB vectors */
48 ppi = CB+lMem-lTarget-1;
49 ppo = CB+lMem-1;
51 pp=CB+lMem-lTarget;
29 WebRtcIlbcfix_CbMemEnergy( int16_t range, int16_t *CB, int16_t *filteredCB, int16_t lMem, int16_t lTarget, int16_t *energyW16, int16_t *energyShifts, int16_t scale, int16_t base_size ) argument
H A Dvq3.c29 int16_t *CB, /* codebook in Q13 */
43 tmp = X[0] - CB[pos];
46 tmp = X[i] - CB[pos + i];
59 Xq[i] = CB[minindex*3 + i];
26 WebRtcIlbcfix_Vq3( int16_t *Xq, int16_t *index, int16_t *CB, int16_t *X, int16_t n_cb ) argument
H A Dvq4.c29 int16_t *CB, /* codebook in Q13 */
43 tmp = X[0] - CB[pos];
46 tmp = X[i] - CB[pos + i];
59 Xq[i] = CB[minindex*4 + i];
26 WebRtcIlbcfix_Vq4( int16_t *Xq, int16_t *index, int16_t *CB, int16_t *X, int16_t n_cb ) argument
/external/clang/test/Modules/Inputs/
H A Dredecl-add-after-load-decls.h15 typedef C::A CB; typedef
/external/clang/tools/libclang/
H A DCIndexInclusionStack.cpp25 void clang_getInclusions(CXTranslationUnit TU, CXInclusionVisitor CB, argument
71 CB(static_cast<CXFile>(
H A DIndexingContext.h276 IndexerCallbacks &CB; member in class:clang::cxindex::IndexingContext
336 : Ctx(nullptr), ClientData(clientData), CB(indexCallbacks),
361 bool hasDiagnosticCallback() const { return CB.diagnostic; }
H A DIndexing.cpp510 IndexerCallbacks CB; local
511 memset(&CB, 0, sizeof(CB));
512 unsigned ClientCBSize = index_callbacks_size < sizeof(CB)
513 ? index_callbacks_size : sizeof(CB);
514 memcpy(&CB, client_index_callbacks, ClientCBSize);
617 IndexAction.reset(new IndexingFrontendAction(client_data, CB,
769 IndexerCallbacks CB; local
770 memset(&CB, 0, sizeof(CB));
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DAnalyzerStatsChecker.cpp64 const CFGBlock *CB = BE->getBlock(); local
65 reachable.insert(CB);
76 const CFGBlock *CB = *I; local
79 if (!reachable.count(CB)) {
H A DUnreachableCodeChecker.cpp44 static inline const Stmt *getUnreachableStmt(const CFGBlock *CB);
45 static void FindUnreachableEntryPoints(const CFGBlock *CB,
48 static bool isInvalidPath(const CFGBlock *CB, const ParentMap &PM);
49 static inline bool isEmptyCFGBlock(const CFGBlock *CB);
83 const CFGBlock *CB = BE->getBlock(); local
84 reachable.insert(CB->getBlockID());
101 const CFGBlock *CB = *I; local
103 if (reachable.count(CB->getBlockID()))
107 if (isEmptyCFGBlock(CB))
111 if (!visited.count(CB
174 FindUnreachableEntryPoints(const CFGBlock *CB, CFGBlocksSet &reachable, CFGBlocksSet &visited) argument
196 getUnreachableStmt(const CFGBlock *CB) argument
212 isInvalidPath(const CFGBlock *CB, const ParentMap &PM) argument
247 isEmptyCFGBlock(const CFGBlock *CB) argument
[all...]
/external/clang/test/Modules/
H A Dredecl-add-after-load.cpp23 typedef C::A CB; typedef
45 CB struct_struct_test;
/external/chromium_org/third_party/leveldatabase/src/util/
H A Denv_test.cc38 struct CB { struct
42 CB(port::AtomicPointer* p, int i) : last_id_ptr(p), id(i) { } function in struct:leveldb::CB
45 CB* cb = reinterpret_cast<CB*>(v);
53 CB cb1(&last_id, 1);
54 CB cb2(&last_id, 2);
55 CB cb3(&last_id, 3);
56 CB cb4(&last_id, 4);
57 env_->Schedule(&CB::Run, &cb1);
58 env_->Schedule(&CB
[all...]
/external/compiler-rt/lib/asan/tests/
H A Dasan_noinst_test.cc231 typedef void (*CB)(uptr p); typedef
232 CB cb[2][5] = {
254 CB call = cb[is_write][size_log];
/external/clang/lib/Analysis/
H A DReachableCode.cpp363 clang::reachable_code::Callback &CB);
371 clang::reachable_code::Callback &CB);
443 clang::reachable_code::Callback &CB) {
476 reportDeadCode(Block, S, CB);
496 reportDeadCode(Block, I->second, CB);
571 clang::reachable_code::Callback &CB) {
601 CB.HandleUnreachable(reachable_code::UK_Loop_Increment,
621 CB.HandleUnreachable(UK, Loc, SilenceableCondVal, R1, R2);
638 Callback &CB) {
672 numReachable += DS.scanBackwards(block, CB);
442 scanBackwards(const clang::CFGBlock *Start, clang::reachable_code::Callback &CB) argument
569 reportDeadCode(const CFGBlock *B, const Stmt *S, clang::reachable_code::Callback &CB) argument
637 FindUnreachableCode(AnalysisDeclContext &AC, Preprocessor &PP, Callback &CB) argument
[all...]
/external/llvm/include/llvm/ADT/
H A DImmutableMap.h183 CBWrapperRef<Callback> CB(C);
184 Root->foreach(CB);
191 CBWrapper<Callback> CB; local
192 Root->foreach(CB);
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_yuv_sw.c938 int CR, CB; local
1009 CB = CR = (i-128);
1012 Cb_g_tab[i] = (int) (-(0.114/0.331) * CB);
1013 Cb_b_tab[i] = (int) ( (0.587/0.331) * CB);
/external/compiler-rt/test/tsan/
H A Ddeadlock_detector_stress_test.cc543 struct CB { struct in class:LockTest
548 // Thread function with CB.
550 CB *cb = (CB*)param;
559 CB cb[kNumThreads] = {{f1, this}, {f2, this}, {f3, this}, {f4, this}};
/external/chromium_org/net/tools/epoll_server/
H A Depoll_server.h123 typedef EpollCallbackInterface CB; typedef in class:net::EpollServer
165 virtual void RegisterFD(int fd, CB* cb, int event_mask);
175 virtual void RegisterFDForWrite(int fd, CB* cb);
185 virtual void RegisterFDForReadWrite(int fd, CB* cb);
195 virtual void RegisterFDForRead(int fd, CB* cb);
/external/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp147 ConstantInt *CB = dyn_cast<ConstantInt>(B); local
150 if (!CB || !CC) {
154 const APInt &BVal = CB->getValue();
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1629 ConstantInt *CB = dyn_cast<ConstantInt>(PN->getIncomingValue(i)); local
1630 if (!CB || !CB->getType()->isIntegerTy(1)) continue;
1635 BasicBlock *RealDest = BI->getSuccessor(!CB->getZExtValue());

Completed in 665 milliseconds