Searched refs:is_long (Results 1 - 25 of 29) sorted by relevance

12

/external/chromium_org/third_party/skia/src/core/
H A DSkMiniData.cpp9 static bool is_long(uint64_t rep) { function in namespace:__anon15184
28 SkASSERT(is_long(rep));
67 if (is_long(fRep)) {
73 return is_long(fRep) ? reinterpret_cast<const LongData*>( fRep)->data
78 return is_long(fRep) ? reinterpret_cast<const LongData*>( fRep)->len
/external/bluetooth/bluedroid/stack/srvc/
H A Dsrvc_battery_int.h74 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_int.h74 BOOLEAN is_long, tGATT_STATUS *p_status);
H A Dsrvc_eng.c222 if (p_data->is_long)
228 act = dis_read_attr_value(clcb_idx, p_data->handle, &p_rsp->attr_value, p_data->is_long, p_status);
231 act = battery_s_read_attr_value(clcb_idx, p_data->handle, &p_rsp->attr_value, p_data->is_long, p_status);
H A Dsrvc_battery.c112 UINT8 battery_s_read_attr_value (UINT8 clcb_idx, UINT16 handle, tGATT_VALUE *p_value, BOOLEAN is_long, tGATT_STATUS* p_status) argument
128 if (is_long)
H A Dsrvc_dis.c114 BOOLEAN is_long, tGATT_STATUS *p_status)
128 is_long == TRUE)
113 dis_read_attr_value(UINT8 clcb_idx, UINT16 handle, tGATT_VALUE *p_value, BOOLEAN is_long, tGATT_STATUS *p_status) argument
/external/valgrind/main/exp-sgcheck/tests/
H A Dbad_percentify.c349 Bool is_long, caps; local
416 if (0 == n_ls) { is_long = False; }
417 else if (1 == n_ls) { is_long = ( sizeof(void*) == sizeof(Long) ); }
418 else { is_long = True; }
426 if (is_long)
435 if (is_long)
443 if (is_long)
476 if (is_long)
H A Dhackedbz2.c1146 Bool is_long; local
1170 is_long = False;
1198 is_long = True;
1204 if (is_long)
1212 if (is_long)
1227 if (is_long)
/external/valgrind/main/coregrind/
H A Dm_debuglog.c735 Bool is_long, caps; local
802 if (0 == n_ls) { is_long = False; }
803 else if (1 == n_ls) { is_long = ( sizeof(void*) == sizeof(Long) ); }
804 else { is_long = True; }
812 if (is_long)
821 if (is_long)
829 if (is_long)
873 if (is_long)
/external/chromium_org/third_party/protobuf/python/google/protobuf/
H A Dtext_format.py405 result = ParseInteger(self.token, is_signed=True, is_long=False)
421 result = ParseInteger(self.token, is_signed=False, is_long=False)
437 result = ParseInteger(self.token, is_signed=True, is_long=True)
453 result = ParseInteger(self.token, is_signed=False, is_long=True)
623 def ParseInteger(text, is_signed=False, is_long=False):
629 is_long: True if a long integer must be parsed.
644 checker = _INTEGER_CHECKERS[2 * int(is_long) + int(is_signed)]
/external/protobuf/python/google/protobuf/
H A Dtext_format.py420 result = self._ParseInteger(self.token, is_signed=True, is_long=False)
436 result = self._ParseInteger(self.token, is_signed=False, is_long=False)
452 result = self._ParseInteger(self.token, is_signed=True, is_long=True)
468 result = self._ParseInteger(self.token, is_signed=False, is_long=True)
565 def _ParseInteger(self, text, is_signed=False, is_long=False):
571 is_long: True if a long integer must be parsed.
593 checker = self._INTEGER_CHECKERS[2 * int(is_long) + int(is_signed)]
/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
234 is_long == TRUE)
284 if (p_data->is_long)
289 status = gap_read_attr_value(p_data->handle, &p_rsp->attr_value, p_data->is_long);
/external/chromium_org/third_party/libxml/src/
H A Dtriop.h107 void trio_set_long TRIO_PROTO((trio_pointer_t ref, int is_long));
/external/libxml2/
H A Dtriop.h107 void trio_set_long TRIO_PROTO((trio_pointer_t ref, int is_long));
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DCode.pxd60 cdef public bint is_long
/external/valgrind/main/VEX/switchback/
H A Dtest_emfloat.c255 Bool is_long; local
279 is_long = False;
307 is_long = True;
313 if (is_long)
321 if (is_long)
336 if (is_long)
H A Dtest_ppc_jm1.c473 Bool is_long; local
497 is_long = False;
525 is_long = True;
531 if (is_long)
539 if (is_long)
554 if (is_long)
H A Dtest_bzip2.c1124 Bool is_long; local
1148 is_long = False;
1176 is_long = True;
1182 if (is_long)
1190 if (is_long)
1205 if (is_long)
/external/bluetooth/bluedroid/stack/gatt/
H A Dgatt_db.c697 BOOLEAN is_long,
714 is_long,
1163 sr_data.read_req.is_long = (BOOLEAN)(op_code == GATT_REQ_READ_BLOB);
696 gatts_read_attr_perm_check(tGATT_SVC_DB *p_db, BOOLEAN is_long, UINT16 handle, tGATT_SEC_FLAG sec_flag, UINT8 key_size) argument
/external/bluetooth/bluedroid/stack/include/
H A Dgatt_api.h346 BOOLEAN is_long; member in struct:__anon1529
/external/chromium_org/third_party/protobuf/python/google/protobuf/pyext/
H A Dpython-proto2.cc334 bool is_long = PyLong_Check(arg); local
335 if (!PyInt_Check(arg) && !is_long) {
348 if (is_long) {
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_gatt_server.c294 p_data->req_data.p_data->read_req.is_long);
/external/valgrind/main/memcheck/tests/
H A Dorigin5-bz2.c1139 Bool is_long; local
1163 is_long = False;
1191 is_long = True;
1197 if (is_long)
1205 if (is_long)
1220 if (is_long)
H A Dvarinfo6.c1177 Bool is_long; local
1201 is_long = False;
1229 is_long = True;
1235 if (is_long)
1243 if (is_long)
1258 if (is_long)
/external/valgrind/main/perf/
H A Dbz2.c1139 Bool is_long; local
1163 is_long = False;
1191 is_long = True;
1197 if (is_long)
1205 if (is_long)
1220 if (is_long)

Completed in 3288 milliseconds

12