Searched refs:p_value (Results 1 - 25 of 31) sorted by relevance

12

/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
H A Dcio.h177 * @param p_value the value to write
180 void opj_write_bytes_BE (OPJ_BYTE * p_buffer, OPJ_UINT32 p_value, OPJ_UINT32 p_nb_bytes);
185 * @param p_value pointer to the value that will store the data.
189 void opj_read_bytes_BE(const OPJ_BYTE * p_buffer, OPJ_UINT32 * p_value, OPJ_UINT32 p_nb_bytes);
194 * @param p_value the value to write
198 void opj_write_bytes_LE (OPJ_BYTE * p_buffer, OPJ_UINT32 p_value, OPJ_UINT32 p_nb_bytes);
203 * @param p_value pointer to the value that will store the data.
207 void opj_read_bytes_LE(const OPJ_BYTE * p_buffer, OPJ_UINT32 * p_value, OPJ_UINT32 p_nb_bytes);
213 * @param p_value the value to write
215 void opj_write_double_LE(OPJ_BYTE * p_buffer, OPJ_FLOAT64 p_value);
[all...]
H A Dcio.c47 void opj_write_bytes_BE (OPJ_BYTE * p_buffer, OPJ_UINT32 p_value, OPJ_UINT32 p_nb_bytes) argument
49 const OPJ_BYTE * l_data_ptr = ((const OPJ_BYTE *) &p_value) + p_nb_bytes;
56 void opj_write_bytes_LE (OPJ_BYTE * p_buffer, OPJ_UINT32 p_value, OPJ_UINT32 p_nb_bytes) argument
58 const OPJ_BYTE * l_data_ptr = ((const OPJ_BYTE *) &p_value) + p_nb_bytes - 1;
68 void opj_read_bytes_BE(const OPJ_BYTE * p_buffer, OPJ_UINT32 * p_value, OPJ_UINT32 p_nb_bytes) argument
70 OPJ_BYTE * l_data_ptr = ((OPJ_BYTE *) p_value);
74 *p_value = 0;
78 void opj_read_bytes_LE(const OPJ_BYTE * p_buffer, OPJ_UINT32 * p_value, OPJ_UINT32 p_nb_bytes) argument
80 OPJ_BYTE * l_data_ptr = ((OPJ_BYTE *) p_value) + p_nb_bytes-1;
85 *p_value
91 opj_write_double_BE(OPJ_BYTE * p_buffer, OPJ_FLOAT64 p_value) argument
97 opj_write_double_LE(OPJ_BYTE * p_buffer, OPJ_FLOAT64 p_value) argument
106 opj_read_double_BE(const OPJ_BYTE * p_buffer, OPJ_FLOAT64 * p_value) argument
112 opj_read_double_LE(const OPJ_BYTE * p_buffer, OPJ_FLOAT64 * p_value) argument
121 opj_write_float_BE(OPJ_BYTE * p_buffer, OPJ_FLOAT32 p_value) argument
127 opj_write_float_LE(OPJ_BYTE * p_buffer, OPJ_FLOAT32 p_value) argument
136 opj_read_float_BE(const OPJ_BYTE * p_buffer, OPJ_FLOAT32 * p_value) argument
142 opj_read_float_LE(const OPJ_BYTE * p_buffer, OPJ_FLOAT32 * p_value) argument
[all...]
/external/bluetooth/bluedroid/stack/srvc/
H A Dsrvc_battery_int.h72 extern UINT8 battery_s_write_attr_value(UINT8 clcb_idx, tGATT_WRITE_REQ * p_value,
74 extern UINT8 battery_s_read_attr_value (UINT8 clcb_idx, UINT16 handle, tGATT_VALUE *p_value, BOOLEAN is_long, tGATT_STATUS* p_status);
H A Dsrvc_dis.c113 UINT8 dis_read_attr_value (UINT8 clcb_idx, UINT16 handle, tGATT_VALUE *p_value, argument
117 UINT8 *p = p_value->value, i, *pp;
118 UINT16 offset = p_value->offset;
148 p_value->len = GATT_MAX_ATTR_LEN;
150 p_value->len = (UINT16)strlen ((char *)pp);
153 p_value->len = 0;
155 if (offset > p_value->len)
162 p_value->len -= offset;
164 ARRAY_TO_STREAM(p, pp, p_value->len);
165 GATT_TRACE_EVENT("GATT_UUID_MANU_NAME len=0x%04x", p_value
[all...]
H A Dsrvc_dis_int.h73 extern UINT8 dis_read_attr_value (UINT8 clcb_idx, UINT16 handle, tGATT_VALUE *p_value,
H A Dsrvc_battery.c70 UINT8 battery_s_write_attr_value(UINT8 clcb_idx, tGATT_WRITE_REQ * p_value, argument
73 UINT8 *p = p_value->value, i;
74 UINT16 handle = p_value->handle;
93 cfg.need_rsp = p_value->need_rsp;
112 UINT8 battery_s_read_attr_value (UINT8 clcb_idx, UINT16 handle, tGATT_VALUE *p_value, BOOLEAN is_long, tGATT_STATUS* p_status) argument
118 UNUSED(p_value);
H A Dsrvc_eng_int.h82 extern void srvc_sr_notify(BD_ADDR remote_bda, UINT16 handle, UINT16 len, UINT8 *p_value);
H A Dsrvc_eng.c470 void srvc_sr_notify(BD_ADDR remote_bda, UINT16 handle, UINT16 len, UINT8 *p_value) argument
476 GATTS_HandleValueNotification( conn_id, handle, len, p_value);
/external/libnfc-nci/src/include/
H A Dconfig.h26 int GetStrValue(const char* name, char* p_value, unsigned long len);
27 int GetNumValue(const char* name, void* p_value, unsigned long len);
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_gatt_util.c259 if (( p_src->status == BTA_GATT_OK ) &&(p_src->p_value != NULL))
261 ALOGI("%s unformat.len = %d ", __FUNCTION__, p_src->p_value->unformat.len);
262 p_dest->value.len = p_src->p_value->unformat.len;
263 if ( p_src->p_value->unformat.len > 0 && p_src->p_value->unformat.p_value != NULL )
265 memcpy(p_dest->value.value, p_src->p_value->unformat.p_value,
266 p_src->p_value->unformat.len);
268 len += p_src->p_value
[all...]
H A Dbtif_gatt_client.c271 if (p_src_data->read.p_value != NULL)
273 p_dest_data->read.p_value = GKI_getbuf(sizeof(tBTA_GATT_READ_VAL));
275 if (p_dest_data->read.p_value != NULL)
277 memcpy(p_dest_data->read.p_value, p_src_data->read.p_value,
282 && p_src_data->read.p_value->unformat.len > 0
283 && p_src_data->read.p_value->unformat.p_value != NULL)
285 p_dest_data->read.p_value->unformat.p_value
1878 btif_gattc_write_char(int conn_id, btgatt_srvc_id_t* srvc_id, btgatt_gatt_id_t* char_id, int write_type, int len, int auth_req, char* p_value) argument
1895 btif_gattc_write_char_descr(int conn_id, btgatt_srvc_id_t* srvc_id, btgatt_gatt_id_t* char_id, btgatt_gatt_id_t* descr_id, int write_type, int len, int auth_req, char* p_value) argument
[all...]
H A Dbtif_gatt_server.c647 int len, int confirm, char* p_value)
656 memcpy(btif_cb.value, p_value, len > BTGATT_MAX_ATTR_LEN ? BTGATT_MAX_ATTR_LEN : len);
646 btif_gatts_send_indication(int server_if, int attribute_handle, int conn_id, int len, int confirm, char* p_value) argument
/external/bluetooth/bluedroid/stack/gatt/
H A Dgatt_db.c103 return &((tGATT_ATTR16 *)p_db->p_attr_list)->p_value->uuid;
195 ** p_value: output parameter to carry out the attribute value.
245 len = p_attr16->p_value->uuid.len;
246 if (mtu >= p_attr16->p_value->uuid.len)
248 gatt_build_uuid_to_stream(&p, p_attr16->p_value->uuid);
258 UINT8_TO_STREAM(p, p_attr16->p_value->char_decl.property);
259 UINT16_TO_STREAM(p, p_attr16->p_value->char_decl.char_val_handle);
281 if (p_attr16->p_value->incl_handle.service_type.len == LEN_UUID_16)
288 UINT16_TO_STREAM(p, p_attr16->p_value->incl_handle.s_handle);
289 UINT16_TO_STREAM(p, p_attr16->p_value
638 gatts_read_attr_value_by_handle(tGATT_TCB *p_tcb, tGATT_SVC_DB *p_db, UINT8 op_code, UINT16 handle, UINT16 offset, UINT8 *p_value, UINT16 *p_len, UINT16 mtu, tGATT_SEC_FLAG sec_flag, UINT8 key_size, UINT32 trans_id) argument
[all...]
H A Dgatt_int.h179 tGATT_ATTR_VALUE *p_value; member in struct:__anon1280
192 tGATT_ATTR_VALUE *p_value; member in struct:__anon1281
206 tGATT_ATTR_VALUE *p_value; member in struct:__anon1282
703 UINT8 *p_value, UINT16 *p_len, UINT16 mtu,tGATT_SEC_FLAG sec_flag,UINT8 key_size,UINT32 trans_id);
/external/bluetooth/bluedroid/bta/gatt/
H A Dbta_gattc_api.c639 tBTA_GATTC_ATTR_ID *p_value; local
656 p_buf->p_id_list = p_value = (tBTA_GATTC_ATTR_ID *)(p_buf + 1);
658 for (i = 0; i < p_buf->num_attr; i ++, p_value ++)
660 memcpy(p_value, &p_read_multi->id_list[i], sizeof(tBTA_GATTC_ATTR_ID));
679 ** p_value - the value to be written.
688 UINT8 *p_value,
707 if (p_value && len > 0)
709 p_buf->p_value = (UINT8 *)(p_buf + 1);
710 memcpy(p_buf->p_value, p_value, le
684 BTA_GATTC_WriteCharValue( UINT16 conn_id, tBTA_GATTC_CHAR_ID *p_char_id, tBTA_GATTC_WRITE_TYPE write_type, UINT16 len, UINT8 *p_value, tBTA_GATT_AUTH_REQ auth_req) argument
785 BTA_GATTC_PrepareWrite(UINT16 conn_id, tBTA_GATTC_CHAR_ID *p_char_id, UINT16 offset, UINT16 len, UINT8 *p_value, tBTA_GATT_AUTH_REQ auth_req) argument
[all...]
H A Dbta_gattc_utils.c631 tBTA_GATT_READ_VAL *p_value)
647 &p_value->aggre_value.pre_format[i].char_id.srvc_id,
648 &p_value->aggre_value.pre_format[i].char_id.char_id,
649 &p_value->aggre_value.pre_format[i].descr_id) == FALSE)
658 p_value->aggre_value.num_pres_fmt = i;
663 p_value->unformat.len = p_attr->len;
664 p_value->unformat.p_value = p_attr->value;
628 bta_gattc_pack_read_cb_data(tBTA_GATTC_SERV *p_srcb, tBT_UUID *p_descr_uuid, tGATT_VALUE *p_attr, tBTA_GATT_READ_VAL *p_value) argument
H A Dbta_gattc_int.h145 UINT8 *p_value; member in struct:__anon557
525 extern tBTA_GATT_STATUS bta_gattc_pack_read_cb_data(tBTA_GATTC_SERV *p_srcb, tBT_UUID *p_descr_uuid, tGATT_VALUE *p_attr, tBTA_GATT_READ_VAL *p_value);
/external/bluetooth/bluedroid/stack/gap/
H A Dgap_ble.c222 tGATT_STATUS gap_read_attr_value (UINT16 handle, tGATT_VALUE *p_value, BOOLEAN is_long) argument
225 UINT8 *p = p_value->value, i;
226 UINT16 offset = p_value->offset;
242 p_value->len = GATT_MAX_ATTR_LEN;
244 p_value->len = (UINT16)strlen ((char *)p_dev_name);
246 if (offset > p_value->len)
250 p_value->len -= offset;
252 ARRAY_TO_STREAM(p, p_dev_name, p_value->len);
253 GAP_TRACE_EVENT("GATT_UUID_GAP_DEVICE_NAME len=0x%04x", p_value->len);
259 p_value
454 GAP_BleAttrDBUpdate(UINT16 attr_uuid, tGAP_BLE_ATTR_VALUE *p_value) argument
[all...]
/external/libnfc-nci/src/nfc/llcp/
H A Dllcp_sdp.c397 UINT8 type, length, tid, sap, *p_value; local
418 p_value = p;
419 BE_STREAM_TO_UINT8 (tid, p_value);
420 sap = llcp_sdp_get_sap_by_name ((char*) p_value, (UINT8) (length - 1));
433 p_value = p;
434 BE_STREAM_TO_UINT8 (tid, p_value);
435 BE_STREAM_TO_UINT8 (sap, p_value);
/external/libnfc-nci/src/nfa/dm/
H A Dnfa_dm_main.c228 UINT8 type, len, *p_value, *p_stored, max_len; local
248 p_value = p_tlv_list + xx + 2;
382 else if (memcmp (p_value, p_stored, len))
389 if (memcmp (p_value, p_stored, len))
401 memcpy (p_stored, p_value, len);
/external/bluetooth/bluedroid/bta/hh/
H A Dbta_hh_le.c718 p_data->p_value && p_data->p_value->unformat.len == 2)
720 pp = p_data->p_value->unformat.p_value;
777 p_data->p_value && p_data->p_value->unformat.len == 2)
779 pp = p_data->p_value->unformat.p_value;
931 value.p_value = buf;
1847 pp = p_data->p_value
2544 UINT8 *p_value, rpt_id; local
[all...]
/external/chromium_org/tools/auto_bisect/
H A Dbisect_results.py45 _, _, p_value = ttest.WelchsTTest(sample1, sample2)
46 return 100.0 * (1.0 - p_value)
/external/bluetooth/bluedroid/bta/include/
H A Dbta_gatt_api.h186 UINT8 *p_value; member in struct:__anon765
313 tBTA_GATT_READ_VAL *p_value; member in struct:__anon778
928 ** p_value - the value to be written.
937 UINT8 *p_value,
949 ** p_value - the value to be written.
1019 ** p_value - the value to be written.
1028 UINT8 *p_value,
/external/bluetooth/bluedroid/bta/jv/
H A Dbta_jv_int.h382 UINT8 *p_value; member in struct:__anon951
/external/bluetooth/bluedroid/stack/include/
H A Dgap_api.h744 GAP_API extern void GAP_BleAttrDBUpdate(UINT16 attr_uuid, tGAP_BLE_ATTR_VALUE *p_value);

Completed in 9007 milliseconds

12