/external/apache-http/src/org/apache/http/impl/conn/tsccm/ |
ThreadSafeClientConnManager.java | 122 AbstractConnPool acp = new ConnPoolByRoute(connOperator, params); local 125 acp.enableConnectionGC(); 127 return acp;
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_fs_copy_propagation.cpp | 70 * and maintaining the ACP table of available copies for propagation. 76 /* Walks a basic block and does copy propagation on it using the acp 81 fs_bblock *block, exec_list *acp) 90 foreach_list(entry_node, acp) { 99 /* kill the destination from the ACP */ 101 foreach_list_safe(entry_node, acp) { 111 /* If this instruction is a raw copy, add it to the ACP. */ 127 acp->push_tail(entry); 144 exec_list acp; local 146 progress = opt_copy_propagate_local(mem_ctx, block, &acp) || progress [all...] |
/external/ipsec-tools/src/racoon/ |
admin.c | 362 struct admin_com_psk *acp; local 367 acp = (struct admin_com_psk *) 371 idtype = acp->id_type; 373 if ((id = vmalloc(acp->id_len)) == NULL) { 379 data = (char *)(acp + 1); 382 if ((key = vmalloc(acp->key_len)) == NULL) { 390 data = (char *)(data + acp->id_len);
|
racoonctl.c | 655 struct admin_com_psk *acp; local 669 com_len += sizeof(*acp) + strlen(id) + 1 + strlen(key) + 1; 716 acp = (struct admin_com_psk *) 719 acp->id_type = IDTYPE_USERFQDN; 720 acp->id_len = strlen(id) + 1; 721 acp->key_len = strlen(key) + 1; 723 data = (char *)(acp + 1); 726 data = (char *)(data + acp->id_len); [all...] |
/external/mesa3d/src/glsl/ |
opt_copy_propagation.cpp | 77 this->acp = new(mem_ctx) exec_list; 98 exec_list *acp; member in class:__anon20958::ir_copy_propagation_visitor 121 exec_list *orig_acp = this->acp; 125 this->acp = new(mem_ctx) exec_list; 132 this->acp = orig_acp; 156 * Replaces dereferences of ACP RHS variables with ACP LHS variables. 170 foreach_iter(exec_list_iterator, iter, *this->acp) { 201 acp->make_empty(); 210 exec_list *orig_acp = this->acp; [all...] |
opt_constant_propagation.cpp | 97 this->acp = new(mem_ctx) exec_list; 118 exec_list *acp; member in class:__anon20956::ir_constant_propagation_visitor 175 foreach_iter(exec_list_iterator, iter, *this->acp) { 224 exec_list *orig_acp = this->acp; 228 this->acp = new(mem_ctx) exec_list; 235 this->acp = orig_acp; 302 acp->make_empty(); 311 exec_list *orig_acp = this->acp; 315 this->acp = new(mem_ctx) exec_list; 319 /* Populate the initial acp with a constant of the original * [all...] |
opt_copy_propagation_elements.cpp | 36 * so this is separate despite the ACP handling being somewhat 101 this->acp = new(mem_ctx) exec_list; 123 exec_list *acp; member in class:__anon20959::ir_copy_propagation_elements_visitor 149 exec_list *orig_acp = this->acp; 153 this->acp = new(mem_ctx) exec_list; 160 this->acp = orig_acp; 198 * Replaces dereferences of ACP RHS variables with ACP LHS variables. 244 /* Try to find ACP entries covering swizzle_chan[], hoping they're 247 foreach_iter(exec_list_iterator, iter, *this->acp) { [all...] |
/external/pdfium/fpdfsdk/src/pdfwindow/ |
PWL_Signature.cpp | 145 PWL_CREATEPARAM acp = cp; local 146 acp.pParentWnd = this; 147 acp.dwFlags = PWS_CHILD | PWS_VISIBLE | PWS_AUTOFONTSIZE | PES_MULTILINE | 149 acp.sTextColor = CPWL_Color(COLORTYPE_GRAY, 0); 150 m_pText->Create(acp);
|
PWL_Note.cpp | 1222 PWL_CREATEPARAM acp = cp; local [all...] |
/external/wpa_supplicant_8/src/ap/ |
wmm.c | 78 struct hostapd_wmm_ac_params *acp = local 81 ac->aci_aifsn = wmm_aci_aifsn(acp->aifs, 82 acp->admission_control_mandatory, 84 ac->cw = wmm_ecw(acp->cwmin, acp->cwmax); 85 ac->txop_limit = host_to_le16(acp->txop_limit);
|
/hardware/intel/common/libmix/mix_audio/src/ |
mixacp.c | 80 MixAudioConfigParams *acp = MIX_AUDIOCONFIGPARAMS(obj); local 82 if (acp->stream_name) { 83 g_free(acp->stream_name); 84 acp->stream_name = NULL;
|
mixacpaac.c | 72 // MixAudioConfigParamsClass *acp = MIX_AUDIOCONFIGPARAMS_GET_CLASS(klass); 73 MixAudioConfigParamsClass *acp = (MixAudioConfigParamsClass *)klass; local 74 acp->print_params = mix_aac_print_params;
|
/system/bt/btif/co/ |
bta_av_co.c | 141 BOOLEAN acp; /* acceptor */ member in struct:__anon73689 668 if (p_peer->acp) 707 if (p_peer->acp) 875 p_peer->acp = TRUE; [all...] |
/external/mesa3d/src/mesa/program/ |
ir_to_mesa.cpp | 2572 ir_to_mesa_instruction **acp = rzalloc_array(mem_ctx, local [all...] |
/external/mesa3d/src/mesa/state_tracker/ |
st_glsl_to_tgsi.cpp | 3243 glsl_to_tgsi_instruction **acp = rzalloc_array(mem_ctx, local [all...] |