HomeSort by relevance Sort by last modified time
    Searched defs:assoc (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
ptw32_tkAssocCreate.c 69 * 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->nextThread = (ThreadKeyAssoc *) key->threads
    [all...]
pthread_key_delete.c 76 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);
pthread_setspecific.c 121 * 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)
ptw32_callUserDestroyRoutines.c 77 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->key->keyLock), &keyLock) == EBUSY
    [all...]
  /external/bison/src/
assoc.h 30 } assoc; typedef in typeref:enum:__anon2775
32 char const *assoc_to_string (assoc a);
symtab.h 29 # 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);
parse-gram.h 186 assoc assoc; member in union:GRAM_STYPE
parse-gram.c 345 assoc assoc; member in union:GRAM_STYPE
    [all...]
  /external/valgrind/main/cachegrind/
cg_arch.h 37 Int assoc; member in struct:__anon29481
cg_sim.c 43 Int assoc; member in struct:__anon29501
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...]
cg-x86-amd64.c 249 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 = 4
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
LeftRecursiveRuleAnalyzer.java 14 public static enum ASSOC { left, right };
31 public Map<Integer, ASSOC> altAssociativity = new HashMap<Integer, ASSOC>();
64 ASSOC assoc = ASSOC.left; local
66 String a = (String)t.terminalOptions.get("assoc");
68 if ( a.equals(ASSOC.right.toString()) ) {
69 assoc = ASSOC.right
    [all...]
  /external/wpa_supplicant_8/src/ap/
iapp.c 245 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/
wpa_priv.c 179 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->freq
    [all...]
  /ndk/tests/build/issue56508-gcc4.7-ICE/jni/
extraMachine.c 88 Sint16 assoc; member in struct:filerep
  /external/chromium_org/chrome/installer/setup/
uninstall.cc 717 string16 assoc; local
722 assoc.assign(cleared_assocs[i]);
725 if (assoc == L".htm" || assoc == L".html")
727 else if (assoc == L".xht" || assoc == L".xhtml")
731 LOG(WARNING) << "No known replacement ProgID for " << assoc
736 (key.Open(HKEY_LOCAL_MACHINE, (classes_path + assoc).c_str(),
742 << assoc << " = " << replacement_prog_id;
    [all...]
  /external/clang/lib/Sema/
SemaPseudoObject.cpp 87 Expr *assoc = gse->getAssocExpr(i); local
88 if (i == resultIndex) assoc = rebuild(assoc);
89 assocs[i] = assoc;
    [all...]
  /frameworks/base/core/java/android/widget/
GridLayout.java 1292 Assoc<Spec, Bounds> assoc = Assoc.of(Spec.class, Bounds.class); local
    [all...]
  /frameworks/support/v7/gridlayout/src/android/support/v7/widget/
GridLayout.java 1181 Assoc<Spec, Bounds> assoc = Assoc.of(Spec.class, Bounds.class); local
    [all...]
  /external/valgrind/main/callgrind/
sim.c 71 int assoc; member in struct:__anon29517
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/chromium_org/third_party/sqlite/src/tool/
lemon.c 170 enum e_assoc assoc; /* Associativity if precedence is defined */ member in struct:symbol
    [all...]
  /packages/apps/Calculator/
arity-2.1.2.jar 
  /sdk/testapps/gridlayoutTest/v7-gridlayout/libs/
android-support-v7-gridlayout.jar 
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
802.11.h 259 #define DOT11_ASSOC_REQ_FIXED_LEN 4 /* length of assoc frame without info elts */
266 #define DOT11_REASSOC_REQ_FIXED_LEN 10 /* length of assoc frame without info elts */
273 #define DOT11_ASSOC_RESP_FIXED_LEN 6 /* length of assoc resp frame without info elts */
865 #define FC_SUBTYPE_ASSOC_REQ 0 /* assoc. request *
2734 uint8 assoc; \/* # of assoc STAs *\/ member in struct:brcm_ie
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
wlioctl.h 559 wl_join_assoc_params_t assoc; /* optional field, but it must include the fixed portion member in struct:wl_extjoin_params
564 #define WL_EXTJOIN_PARAMS_FIXED_SIZE (OFFSETOF(wl_extjoin_params_t, assoc) + \
    [all...]

Completed in 1486 milliseconds

1 2