HomeSort by relevance Sort by last modified time
    Searched refs:CB (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DOMFileSystem.h 73 template <typename CB, typename CBArg>
74 static void scheduleCallback(ExecutionContext*, CB*, PassRefPtrWillBeRawPtr<CBArg>);
76 template <typename CB, typename CBArg>
77 static void scheduleCallback(ExecutionContext*, CB*, CBArg*);
79 template <typename CB, typename CBArg>
80 static void scheduleCallback(ExecutionContext*, CB*, const HeapVector<CBArg>&);
82 template <typename CB, typename CBArg>
83 static void scheduleCallback(ExecutionContext*, CB*, const CBArg&);
85 template <typename CB>
86 static void scheduleCallback(ExecutionContext*, CB*);
    [all...]
FileSystemCallbacks.h 71 template <typename CB, typename CBArg>
72 void handleEventOrScheduleCallback(RawPtr<CB>, RawPtr<CBArg>);
75 template <typename CB, typename CBArg>
76 void handleEventOrScheduleCallback(RawPtr<CB>, CBArg*);
78 template <typename CB, typename CBArg>
79 void handleEventOrScheduleCallback(RawPtr<CB>, PassRefPtrWillBeRawPtr<CBArg>);
81 template <typename CB>
82 void handleEventOrScheduleCallback(RawPtr<CB>);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
vq3.h 31 int16_t *CB, /* (i) the vector quantization codebook (Q13) */
vq4.h 31 int16_t *CB, /* (i) the vector quantization codebook (Q13) */
split_vq.h 33 int16_t *CB, /* (i) the quantizer codebook in Q13 */
vq3.c 29 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];
vq4.c 29 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];
split_vq.c 33 int16_t *CB, /* (i) the quantizer codebook in Q13 */
44 CBPtr=CB;
cb_mem_energy.c 31 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;
59 /* Compute the energy of the rest of the cb memory
64 /* Next, precompute the energy values for the filtered cb section *
    [all...]
cb_mem_energy.h 24 int16_t *CB, /* (i) The CB memory (1:st section) */
25 int16_t *filteredCB, /* (i) The filtered CB memory (2:nd section) */
26 int16_t lMem, /* (i) Length of the CB memory */
28 int16_t *energyW16, /* (o) Energy in the CB vectors */
  /external/clang/lib/StaticAnalyzer/Checkers/
UnreachableCodeChecker.cpp 44 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();
84 reachable.insert(CB->getBlockID());
101 const CFGBlock *CB = *I;
103 if (reachable.count(CB->getBlockID()))
107 if (isEmptyCFGBlock(CB))
111 if (!visited.count(CB->getBlockID())
    [all...]
AnalyzerStatsChecker.cpp 64 const CFGBlock *CB = BE->getBlock();
65 reachable.insert(CB);
76 const CFGBlock *CB = *I;
79 if (!reachable.count(CB)) {
  /external/chromium_org/third_party/leveldatabase/src/util/
env_test.cc 38 struct CB {
42 CB(port::AtomicPointer* p, int i) : last_id_ptr(p), id(i) { }
45 CB* cb = reinterpret_cast<CB*>(v); local
46 void* cur = cb->last_id_ptr->NoBarrier_Load();
47 ASSERT_EQ(cb->id-1, reinterpret_cast<uintptr_t>(cur));
48 cb->last_id_ptr->Release_Store(reinterpret_cast<void*>(cb->id));
53 CB cb1(&last_id, 1)
    [all...]
  /device/lge/hammerhead/nfc/
libnfc-brcm-20791b05.conf 29 NFA_DM_START_UP_CFG={45:CB:01:01:A5:01:01:CA:17:00:00:00:00:06:00:00:00:00:0F:00:00:00:00:E0:67:35:00:14:01:00:00:10:B5:03:01:02:FF:80:01:01:C9:03:03:0F:AB:5B:01:00:B2:04:E8:03:00:00:CF:02:02:08:B1:06:00:20:00:00:00:12:C2:02:00:C8}
32 #NFA_DM_START_UP_CFG={45:CB:01:01:A5:01:01:CA:17:00:00:00:00:06:00:00:00:00:0F:00:00:00:00:E0:67:35:00:14:01:00:00:10:B5:03:01:03:FF:80:01:01:C9:03:03:0F:AB:5B:01:02:B2:04:E8:03:00:00:CF:02:02:08:B1:06:00:20:00:00:00:12:C2:02:01:88}
  /external/chromium_org/media/base/
callback_holder.h 16 template <typename CB> class CallbackHolder {
28 void SetCallback(const CB& cb) {
31 original_cb_ = cb;
42 // This method has overloaded versions to support different types of CB.
82 CB original_cb_;
  /external/eigen/blas/
lsame.f 1 LOGICAL FUNCTION LSAME(CA,CB)
8 CHARACTER CA,CB
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/clang/include/clang/Analysis/Analyses/
ReachableCode.h 65 Callback &CB);
  /device/asus/flo/nfc/
libnfc-brcm-20791b05.conf 28 NFA_DM_START_UP_CFG={42:CB:01:01:A5:01:01:CA:14:00:00:00:00:0E:C0:D4:01:00:0F:00:00:00:00:C0:C6:2D:00:14:0A:B5:03:01:02:FF:80:01:01:C9:03:03:0F:AB:5B:01:00:B2:04:E8:03:00:00:CF:02:02:08:B1:06:00:20:00:00:00:12:C2:02:01:C8}
31 #NFA_DM_START_UP_CFG={48:CB:01:01:A5:01:01:CA:14:00:00:00:00:0E:C0:D4:01:00:0F:00:00:00:00:C0:C6:2D:00:14:0A:B5:03:01:03:FF:80:01:01:C9:03:03:0F:AB:5B:01:02:B2:04:E8:03:00:00:CF:02:02:08:B1:06:00:20:00:00:00:12:C2:08:01:08:00:04:80:C3:C9:01}
  /device/lge/mako/nfc/
libnfc-brcm.conf 80 NFA_DM_START_UP_CFG={2E:CB:01:01:A5:01:01:CA:14:00:00:00:00:06:E8:03:00:00:00:00:00:00:00:00:00:00:00:00:00:80:01:01:C2:08:61:40:82:04:40:4B:4C:00:B5:03:01:02:FF}
  /device/samsung/manta/nfc/
libnfc-brcm.conf 80 NFA_DM_START_UP_CFG={2E:CB:01:01:A5:01:01:CA:14:00:00:00:00:06:E8:03:00:00:00:00:00:00:00:00:00:00:00:00:00:80:01:01:C2:08:61:40:82:04:40:4B:4C:00:B5:03:01:02:FF}
  /external/clang/test/Modules/
redecl-add-after-load.cpp 23 typedef C::A CB;
45 CB struct_struct_test;
  /external/clang/tools/libclang/
CIndexInclusionStack.cpp 25 void clang_getInclusions(CXTranslationUnit TU, CXInclusionVisitor CB,
71 CB(static_cast<CXFile>(
  /external/clang/test/Modules/Inputs/
redecl-add-after-load-decls.h 15 typedef C::A CB;
  /external/ltrace/
vect.h 159 enum callback_status (*cb)(void *, void *), void *data);
161 #define VECT_EACH(VECP, ELT_TYPE, START_AFTER, CB, DATA) \
165 /* Check that CB is typed properly. */ \
166 enum callback_status (*_cb)(ELT_TYPE *, void *) = CB; \
177 enum callback_status (*cb)(const void *, void *),
180 #define VECT_EACH_CST(VECP, ELT_TYPE, START_AFTER, CB, DATA) \
184 /* Check that CB is typed properly. */ \
185 enum callback_status (*_cb)(const ELT_TYPE *, void *) = CB; \
201 /* Check that CB is typed properly. */ \
  /external/llvm/lib/Transforms/Utils/
FlattenCFG.cpp 268 BasicBlock *CB;
275 CB = PBI->getSuccessor(1 - Idx);
279 .splice(FirstCondBlock->end(), CB->getInstList());
294 if (CB == LastCondBlock)
297 CB->dropAllReferences();
298 // make CB unreachable and let downstream to delete the block.
299 new UnreachableInst(CB->getContext(), CB);

Completed in 366 milliseconds

1 2 3 4