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

1 2

  /external/mdnsresponder/mDNSShared/
GenLinkedList.c 37 void InitLinkedList( GenLinkedList *pList, size_t linkOffset)
38 /* Initialize the block of memory pointed to by pList as a linked list. */
40 pList->Head = NULL;
41 pList->Tail = NULL;
42 pList->LinkOffset = linkOffset;
46 void AddToTail( GenLinkedList *pList, void *elem)
49 if ( pList->Tail) {
50 ASSIGNLINK( pList->Tail, elem, pList->LinkOffset);
52 pList->Head = elem
    [all...]
GenLinkedList.h 34 void InitLinkedList( GenLinkedList *pList, size_t linkOffset);
36 void AddToHead( GenLinkedList *pList, void *elem);
37 void AddToTail( GenLinkedList *pList, void *elem);
39 int RemoveFromList( GenLinkedList *pList, void *elem);
41 int ReplaceElem( GenLinkedList *pList, void *elemInList, void *newElem);
55 void InitDoubleLinkedList( GenDoubleLinkedList *pList, size_t fwdLinkOffset,
58 void DLLAddToHead( GenDoubleLinkedList *pList, void *elem);
60 void DLLRemoveFromList( GenDoubleLinkedList *pList, void *elem);
76 void InitLinkedOffsetList( GenLinkedOffsetList *pList, size_t linkOffset);
78 void *GetHeadPtr( GenLinkedOffsetList *pList);
    [all...]
  /hardware/intel/img/psb_video/src/hwdefs/
dma_api.h 231 @Input pList : pointer to start of linked list entry
242 #define DMA_LL_SET_WD0(pList, BSWAP, DIR, PW) \
244 MEMIO_WRITE_FIELD(pList, DMAC_LL_BSWAP, BSWAP); \
245 MEMIO_WRITE_FIELD(pList, DMAC_LL_DIR, DIR); \
246 MEMIO_WRITE_FIELD(pList, DMAC_LL_PW, PW); \
259 @Input pList : pointer to start of linked list entry
270 #define DMA_LL_SET_WD1(pList, INCR, PI, LEN) \
272 MEMIO_WRITE_FIELD(pList, DMAC_LL_PI, PI); \
273 MEMIO_WRITE_FIELD(pList, DMAC_LL_INCR, INCR); \
274 MEMIO_WRITE_FIELD(pList, DMAC_LL_LEN, LEN);
    [all...]
  /hardware/nxp/nfc/halimpl/utils/
phNxpNciHal_utils.cc 37 int listInit(struct listHead* pList) {
38 pList->pFirst = NULL;
39 if (pthread_mutex_init(&pList->mutex, NULL) == -1) {
56 int listDestroy(struct listHead* pList) {
59 bListNotEmpty = listGetAndRemoveNext(pList, NULL);
62 if (pthread_mutex_destroy(&pList->mutex) == -1) {
79 int listAdd(struct listHead* pList, void* pData) {
93 pthread_mutex_lock(&pList->mutex);
96 if (pList->pFirst == NULL) {
98 pList->pFirst = pNode
    [all...]
phNxpNciHal_utils.h 72 int listInit(struct listHead* pList);
73 int listDestroy(struct listHead* pList);
74 int listAdd(struct listHead* pList, void* pData);
75 int listRemove(struct listHead* pList, void* pData);
76 int listGetAndRemoveNext(struct listHead* pList, void** ppData);
77 void listDump(struct listHead* pList);
  /external/pdfium/core/fpdfdoc/
cpdf_linklist.h 30 void LoadPageLinks(CPDF_Page* pPage, std::vector<CPDF_Dictionary*>* pList);
cpdf_linklist.cpp 57 std::vector<CPDF_Dictionary*>* pList) {
66 pList->push_back(add_link ? pAnnot : nullptr);
  /tools/loganalysis/src/com/android/loganalysis/util/
RegexTrie.java 147 private V validateAndPut(V value, List<CompPattern> pList) {
148 if (pList.size() == 0) {
151 return recursivePut(value, pList);
162 List<CompPattern> pList = new ArrayList<CompPattern>(patterns.length);
165 pList.add(null);
168 pList.add(new CompPattern(pat));
170 return validateAndPut(value, pList);
183 List<CompPattern> pList = new ArrayList<CompPattern>(regexen.length);
186 pList.add(null);
190 pList.add(new CompPattern(pat))
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/util/
RegexTrie.java 144 * @param pList The sequence of {@link CompPattern}s that must be sequentially matched to
147 private V validateAndPut(V value, List<CompPattern> pList) {
148 if (pList.size() == 0) {
151 return recursivePut(value, pList);
162 List<CompPattern> pList = new ArrayList<CompPattern>(patterns.length);
165 pList.add(null);
168 pList.add(new CompPattern(pat));
170 return validateAndPut(value, pList);
183 List<CompPattern> pList = new ArrayList<CompPattern>(regexen.length);
186 pList.add(null)
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/
zlib2ansi 58 my %pList = map { $_ => $i++ }
60 my $pMatch = '(\b' . join('|', keys %pList) . '\b)\W*$' ;
84 my %tmp = map { /$pMatch/; $_ => $pList{$1} }
  /external/zlib/src/
zlib2ansi 58 my %pList = map { $_ => $i++ }
60 my $pMatch = '(\b' . join('|', keys %pList) . '\b)\W*$' ;
84 my %tmp = map { /$pMatch/; $_ => $pList{$1} }
  /prebuilts/go/darwin-x86/src/cmd/asm/
main.go 68 pList := new(obj.Plist)
69 pList.Firstpc, ok = parser.Parse()
75 obj.Flushplist(ctxt, pList, nil, "")
  /prebuilts/go/linux-x86/src/cmd/asm/
main.go 68 pList := new(obj.Plist)
69 pList.Firstpc, ok = parser.Parse()
75 obj.Flushplist(ctxt, pList, nil, "")
  /dalvik/libdex/
DexFile.h 798 DEX_INLINE const DexTypeItem* dexGetTypeItem(const DexTypeList* pList,
801 assert(idx < pList->size);
802 return &pList->list[idx];
805 DEX_INLINE u4 dexTypeListGetIdx(const DexTypeList* pList, u4 idx) {
806 const DexTypeItem* pItem = dexGetTypeItem(pList, idx);
1019 const DexAnnotationSetRefList* pList, u4 idx)
1021 assert(idx < pList->size);
1022 return &pList->list[idx];
    [all...]
  /external/pdfium/core/fxcrt/css/
cfx_cssstyleselector.h 75 uint32_t ToTextDecoration(const RetainPtr<CFX_CSSValueList>& pList);
cfx_cssstyleselector.cpp 394 RetainPtr<CFX_CSSValueList> pList = pValue.As<CFX_CSSValueList>();
395 int32_t iCount = pList->CountValues();
399 pComputedStyle->m_InheritedData.m_pFontFamily = pList;
403 ToTextDecoration(pList);
  /external/pdfium/xfa/fxfa/fm2js/
cxfa_fmexpression.h 109 CXFA_FMDoExpression(uint32_t line, std::unique_ptr<CXFA_FMExpression> pList);
183 std::unique_ptr<CXFA_FMExpression> pList);
205 std::unique_ptr<CXFA_FMExpression> pList);
  /external/guice/core/test/com/google/inject/
ProvisionListenerTest.java 557 final List<Class<?>> pList = Lists.newArrayList();
575 bindListener(keyMatcher(Instance.class), new ChainAsserter(pList, chain.build()));
578 bindListener(keyMatcher(A.class), new ChainAsserter(pList, chain.build()));
581 bindListener(keyMatcher(BImpl.class), new ChainAsserter(pList, chain.build()));
584 bindListener(keyMatcher(C.class), new ChainAsserter(pList, chain.build()));
589 bindListener(keyMatcher(D.class), new ChainAsserter(pList, chain.build()));
590 bindListener(keyMatcher(DP.class), new ChainAsserter(pList, chain.build()));
593 bindListener(keyMatcher(E.class), new ChainAsserter(pList, chain.build()));
596 bindListener(keyMatcher(F.class), new ChainAsserter(pList, chain.build()));
606 pList);
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/asm/
endtoend_test.go 35 pList := new(obj.Plist)
45 pList.Firstpc, ok = parser.Parse()
182 top := pList.Firstpc
189 obj.Flushplist(ctxt, pList, nil, "")
277 pList := new(obj.Plist)
292 pList.Firstpc, ok = parser.Parse()
293 obj.Flushplist(ctxt, pList, nil, "")
  /prebuilts/go/linux-x86/src/cmd/asm/internal/asm/
endtoend_test.go 35 pList := new(obj.Plist)
45 pList.Firstpc, ok = parser.Parse()
182 top := pList.Firstpc
189 obj.Flushplist(ctxt, pList, nil, "")
277 pList := new(obj.Plist)
292 pList.Firstpc, ok = parser.Parse()
293 obj.Flushplist(ctxt, pList, nil, "")
  /external/pdfium/fpdfsdk/pwl/
cpwl_list_box.h 23 explicit CPWL_List_Notify(CPWL_ListBox* pList);
cpwl_list_box.cpp 21 CPWL_List_Notify::CPWL_List_Notify(CPWL_ListBox* pList) : m_pList(pList) {
  /external/pdfium/core/fpdfapi/page/
cpdf_docpagedata.cpp 234 CPDF_Dictionary* pList = pResources->GetDictFor("ColorSpace");
235 if (pList) {
236 return GetColorSpaceGuarded(pList->GetDirectObjectFor(name), nullptr,
  /external/pdfium/fxjs/
cfxjse_engine.h 68 void AddToCacheList(std::unique_ptr<CXFA_List> pList);
  /external/tpm2/
RSAKeySieve.c 513 UINT32 pList[8];
516 pList[i--] = composite;
520 pList[i] = next;
527 next = pList[i];

Completed in 8031 milliseconds

1 2