Searched refs:assoc (Results 1 - 25 of 42) sorted by relevance

12

/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dptw32_tkAssocCreate.c69 * ENOMEM - not enough memory to create assoc or other object
75 ThreadKeyAssoc *assoc; local
84 assoc = (ThreadKeyAssoc *) calloc (1, sizeof (*assoc));
86 if (assoc == NULL)
91 assoc->thread = sp;
92 assoc->key = key;
95 * Register assoc with key
97 assoc->prevThread = NULL;
98 assoc
[all...]
H A Dptw32_tkAssocDestroy.c43 ptw32_tkAssocDestroy (ThreadKeyAssoc * assoc) argument
51 * assoc
63 if (assoc != NULL)
67 /* Remove assoc from thread's keys chain */
68 prev = assoc->prevKey;
69 next = assoc->nextKey;
79 if (assoc->thread->keys == assoc)
82 assoc->thread->keys = next;
84 if (assoc
[all...]
H A Dpthread_key_delete.c76 ThreadKeyAssoc *assoc; local
83 * the assoc, we know that the assoc pointed to by
86 while ((assoc = (ThreadKeyAssoc *) key->threads) != NULL)
89 ptw32_thread_t * thread = assoc->thread;
91 if (assoc == NULL)
100 * chain, this will also point key->threads at the next assoc.
102 * a new assoc via pthread_setspecific.
104 ptw32_tkAssocDestroy (assoc);
H A Dpthread_setspecific.c121 * on the association; setting assoc to NULL short
124 ThreadKeyAssoc *assoc; local
129 assoc = (ThreadKeyAssoc *) sp->keys;
133 while (assoc != NULL)
135 if (assoc->key == key)
142 assoc = assoc->nextKey;
148 if (assoc == NULL)
H A Dptw32_callUserDestroyRoutines.c77 ThreadKeyAssoc * assoc; local
100 * The pointer to the next assoc is stored in the thread struct so that
101 * the assoc destructor in pthread_key_delete can adjust it
102 * if it deletes this assoc. This can happen if we fail to acquire
118 * both assoc guards, but in the reverse order to our convention,
123 if ((assoc = (ThreadKeyAssoc *)sp->nextAssoc) == NULL)
132 * assoc->key must be valid because assoc can't change or be
134 * the assoc was on our key chain then the key has not been
141 if (ptw32_mcs_lock_try_acquire(&(assoc
[all...]
/external/bison/src/
H A Dassoc.h30 } assoc; typedef in typeref:enum:__anon369
32 char const *assoc_to_string (assoc a);
H A Dassoc.c24 #include "assoc.h"
28 assoc_to_string (assoc a)
H A Dsymtab.h29 # include "assoc.h"
92 assoc assoc; member in struct:symbol
160 Do nothing if invoked with \c undef_assoc as \c assoc. */
161 void symbol_precedence_set (symbol *sym, int prec, assoc a, location loc);
H A Dparse-gram.h186 assoc assoc; member in union:GRAM_STYPE
H A Dgram.c258 symbols[i]->prec, symbols[i]->assoc,
279 rule_i->prec ? rule_i->prec->assoc : 0,
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
H A DTestExpressionFeatures.g3116 | e '^'<assoc=right>^ e
121 | e ('='<assoc=right>^
122 |'+='<assoc=right>^
123 |'-='<assoc=right>^
124 |'*='<assoc=right>^
125 |'/='<assoc=right>^
126 |'&='<assoc=right>^
127 |'|='<assoc=right>^
128 |'^='<assoc=right>^
129 |'>>='<assoc
[all...]
/external/valgrind/main/cachegrind/
H A Dcg_sim.c43 Int assoc; member in struct:__anon27120
53 /* By this point, the size/assoc/line_size has been checked. */
59 c->assoc = config.assoc;
62 c->sets = (c->size / c->line_size) / c->assoc;
67 if (c->assoc == 1) {
72 c->size, c->line_size, c->assoc);
76 sizeof(UWord) * c->sets * c->assoc);
78 for (i = 0; i < c->sets * c->assoc; i++)
112 set = &(L.tags[set1 * L.assoc]); \
[all...]
H A Dcg-arch.c46 if ((cache->size % (cache->line_size * cache->assoc) != 0) ||
47 (-1 == VG_(log2)(cache->size/cache->line_size/cache->assoc)))
69 /* Then check assoc <= (size / line size) (seg faults otherwise). */
70 if (cache->assoc > (cache->size / cache->line_size)) {
91 cache->assoc = (Int)i2;
94 if (cache->assoc != i2) goto overflow;
138 c->size, c->assoc, c->line_size);
167 #define DEFINED(L) (-1 != L->size || -1 != L->assoc || -1 != L->line_size)
204 " --I1=<size>,<assoc>,<line_size> set I1 cache manually\n"
205 " --D1=<size>,<assoc>,<line_siz
[all...]
H A Dcg-x86-amd64.c249 UInt assoc = ((*(UInt *)&info[4] >> 22) & 0x3ff) + 1; local
255 c.size = assoc * parts * line_size * sets / 1024;
256 c.assoc = assoc;
392 D1c->assoc = (D1i >> 16) & 0xff;
396 I1c->assoc = (I1i >> 16) & 0xff;
400 LLc->assoc = decode_AMD_cache_L2_L3_assoc((L2i >> 12) & 0xf);
409 LLc->assoc = decode_AMD_cache_L2_L3_assoc((L3i >> 12) & 0xf);
447 D1c->assoc = 16;
450 I1c->assoc
[all...]
H A Dcg_arch.h37 Int assoc; member in struct:__anon27100
/external/llvm/test/MC/COFF/
H A Dlinkonce-invalid.s10 .section assoc
35 .linkonce associative assoc
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dprwin16.h110 int (PR_CALLBACK *putenv)( const char *assoc);
129 int PR_CALLBACK _PL_W16CallBackPutenv( const char *assoc );
148 NSPR_API(int) PR_MD_putenv( const char *assoc );
/external/clang/tools/clang-format/
H A Dclang-format.el51 (goto-char (1+ (cdr (assoc 'Cursor json-output))))
/external/valgrind/main/callgrind/
H A Dsim.c71 int assoc; member in struct:__anon27136
158 for (i = 0; i < c->sets * c->assoc; i++)
161 for (i = 0; i < c->sets * c->assoc; i++) {
168 c->tags[i] = i % c->assoc; /* init lower bits as pointer */
175 /* By this point, the size/assoc/line_size has been checked. */
179 c->assoc = config.assoc;
183 c->sets = (c->size / c->line_size) / c->assoc;
193 if (c->assoc == 1) {
199 c->size, c->line_size, c->assoc,
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Dwpa_priv.c179 struct privsep_cmd_associate *assoc; local
186 if (len < sizeof(*assoc)) {
191 assoc = buf;
192 if (sizeof(*assoc) + assoc->wpa_ie_len > len) {
198 bssid = assoc->bssid;
201 params.ssid = assoc->ssid;
202 if (assoc->ssid_len > 32)
204 params.ssid_len = assoc->ssid_len;
205 params.freq = assoc
[all...]
/external/wpa_supplicant_8/hostapd/src/ap/
H A Diapp.c245 struct ieee80211_mgmt *assoc; local
251 assoc = sta->last_assoc_req;
252 seq = assoc ? WLAN_GET_SEQ_SEQ(le_to_host16(assoc->seq_ctrl)) : 0;
260 if (assoc && WLAN_FC_GET_STYPE(le_to_host16(assoc->frame_control)) ==
/external/wpa_supplicant_8/src/ap/
H A Diapp.c245 struct ieee80211_mgmt *assoc; local
251 assoc = sta->last_assoc_req;
252 seq = assoc ? WLAN_GET_SEQ_SEQ(le_to_host16(assoc->seq_ctrl)) : 0;
260 if (assoc && WLAN_FC_GET_STYPE(le_to_host16(assoc->frame_control)) ==
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Diapp.c245 struct ieee80211_mgmt *assoc; local
251 assoc = sta->last_assoc_req;
252 seq = assoc ? WLAN_GET_SEQ_SEQ(le_to_host16(assoc->seq_ctrl)) : 0;
260 if (assoc && WLAN_FC_GET_STYPE(le_to_host16(assoc->frame_control)) ==
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DLeftRecursiveRuleAnalyzer.java64 ASSOC assoc = ASSOC.left;
66 String a = (String)t.terminalOptions.get("assoc");
69 assoc = ASSOC.right;
72 ErrorManager.error(ErrorManager.MSG_ILLEGAL_OPTION_VALUE, "assoc", assoc);
77 if ( altAssociativity.get(alt)!=null && altAssociativity.get(alt)!=assoc ) {
80 altAssociativity.put(alt, assoc);
82 //System.out.println("op " + alt + ": " + t.getText()+", assoc="+assoc);
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DTemplateList.java840 * @param assoc
842 private void putHead(String key, TemplateSubPatternAssociation assoc) argument
846 m_textPatterns = assoc;
848 m_docPatterns = assoc;
850 m_commentPatterns = assoc;
852 m_patternTable.put(key, assoc);

Completed in 1724 milliseconds

12