Home
last modified time | relevance | path

Searched refs:new_elem (Results 1 – 3 of 3) sorted by relevance

/freebsd-10-stable/contrib/gcc/
Dread-rtl.c579 rtx elem, new_elem, original, x; in apply_macro_traverse() local
604 new_elem = rtx_alloc (EXPR_LIST); in apply_macro_traverse()
605 XEXP (new_elem, 1) = XEXP (elem, 1); in apply_macro_traverse()
606 XEXP (elem, 1) = new_elem; in apply_macro_traverse()
607 elem = new_elem; in apply_macro_traverse()
/freebsd-10-stable/crypto/heimdal/lib/sqlite/
Dsqlite3.c22033 HashElem *new_elem; /* New element added to the pH */ in sqlite3HashInsert() local
22056 new_elem = (HashElem*)sqlite3Malloc( sizeof(HashElem) ); in sqlite3HashInsert()
22057 if( new_elem==0 ) return data; in sqlite3HashInsert()
22058 new_elem->pKey = pKey; in sqlite3HashInsert()
22059 new_elem->nKey = nKey; in sqlite3HashInsert()
22060 new_elem->data = data; in sqlite3HashInsert()
22069 insertElement(pH, &pH->ht[h], new_elem); in sqlite3HashInsert()
22071 insertElement(pH, 0, new_elem); in sqlite3HashInsert()
120837 Fts3HashElem *new_elem; /* New element added to the pH */
120864 new_elem = (Fts3HashElem*)fts3HashMalloc( sizeof(Fts3HashElem) );
[all …]
/freebsd-10-stable/contrib/sqlite3/
Dsqlite3.c28914 HashElem *new_elem; /* New element added to the pH */
28930 new_elem = (HashElem*)sqlite3Malloc( sizeof(HashElem) );
28931 if( new_elem==0 ) return data;
28932 new_elem->pKey = pKey;
28933 new_elem->data = data;
28941 insertElement(pH, pH->ht ? &pH->ht[h] : 0, new_elem);
149879 Fts3HashElem *new_elem; /* New element added to the pH */
149906 new_elem = (Fts3HashElem*)fts3HashMalloc( sizeof(Fts3HashElem) );
149907 if( new_elem==0 ) return data;
149909 new_elem->pKey = fts3HashMalloc( nKey );
[all …]