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

/external/stlport/src/
H A Dlock_free_slist.h53 * @param __item [in] Item to add to the front of the list
55 void push(item* __item) { argument
61 // requires ebx, I work around this here by using ecx for the '__item'
72 "L1_%=: movl %%eax, (%%ebx)\n\t" // __item._M_next = _M._M_data._M_top
78 :"a" (_M._M_data._M_top), "d" (_M._M_data._M_sequence), "c" (__item), "S" (&_M._M_data)
207 * @param __item [in] Item to add to the front of the list
209 void push(item* __item) { argument
214 mov ebx, __item
217 L1: mov [ebx], eax // __item._M_next = _M._M_data._M_top
223 InterlockedPushEntrySList(&_M_head, __item);
[all...]

Completed in 77 milliseconds