Searched refs:_a (Results 1 - 25 of 43) sorted by relevance

12

/haiku/src/system/libroot/posix/string/
H A Dmemcmp.c11 memcmp(const void *_a, const void *_b, size_t count) argument
13 const unsigned char *a = (const unsigned char *)_a;
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/
H A Dah_osdep.h73 #define OS_MEMZERO(_a, _n) bzero((_a), (_n))
75 #define OS_MEMCMP(_a, _b, _l) memcmp((_a), (_b), (_l))
77 #define abs(_a) __builtin_abs(_a)
H A Dif_ath_tx.h75 #define SEQNO(_a) ((_a) >> IEEE80211_SEQ_SEQ_SHIFT)
/haiku/src/system/kernel/fs/
H A Dvfs_net_boot.h12 int compare_image_boot(const void *_a, const void *_b);
H A Dvfs_boot.cpp67 compare_image_boot(const void* _a, const void* _b) argument
69 KPartition* a = *(KPartition**)_a;
102 compare_cd_boot(const void* _a, const void* _b) argument
104 KPartition* a = *(KPartition**)_a;
116 return compare_image_boot(_a, _b);
H A Dvfs_net_boot.cpp44 compare_partitions_net_devices(const void *_a, const void *_b) argument
46 KPartition* a = *(KPartition**)_a;
56 return compare_image_boot(_a, _b);
/haiku/headers/cpp/
H A Diomanip.h60 TP _a; member in class:smanip
62 smanip(ios& (*f)(ios&, TP), TP a) : _f(f), _a(a) {} function in class:smanip
77 { (*m._f)(i, m._a); return i; }
81 { (*m._f)(o, m._a); return o;}
114 TP _a; member in class:imanip
116 imanip(istream& (*f)(istream&, TP), TP a) : _f(f), _a(a) {} function in class:imanip
124 { return (*m._f)( i, m._a); }
146 TP _a; member in class:omanip
148 omanip(ostream& (*f)(ostream&, TP), TP a) : _f(f), _a(a) {} function in class:omanip
156 { return (*m._f)(o, m._a); }
[all...]
/haiku/src/system/libroot/posix/glibc/stdlib/
H A Dgrouping.h24 #define MAX(a,b) ({ typeof(a) _a = (a); typeof(b) _b = (b); \
25 _a > _b ? _a : _b; })
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/
H A Dah_internal.h494 #define ath_hal_eepromDiag(_ah, _request, _a, _asize, _r, _rsize) \
495 AH_PRIVATE(_ah)->ah_eepromDiag(_ah, _request, _a, _asize, _r, _rsize)
589 #define OS_REG_RMW(_a, _r, _set, _clr) \
590 OS_REG_WRITE(_a, _r, (OS_REG_READ(_a, _r) & ~(_clr)) | (_set))
591 #define OS_REG_RMW_FIELD(_a, _r, _f, _v) \
592 OS_REG_WRITE(_a, _r, \
593 (OS_REG_READ(_a, _r) &~ (_f)) | (((_v) << _f##_S) & (_f)))
594 #define OS_REG_SET_BIT(_a, _r, _f) \
595 OS_REG_WRITE(_a, _
[all...]
/haiku/src/build/libbe/app/
H A DMessenger.cpp160 operator<(const BMessenger &_a, const BMessenger &_b) argument
162 BMessenger::Private a(const_cast<BMessenger&>(_a));
/haiku/src/add-ons/kernel/drivers/disk/nvme/libnvme/
H A Dnvme_common.h300 typeof (a) _a = (a); \
302 _a < _b ? _a : _b; \
309 typeof (a) _a = (a); \
311 _a > _b ? _a : _b; \
/haiku/src/tests/kits/locale/
H A DcollatorTest.cpp58 compareStrings(const void *_a, const void *_b) argument
60 const char *a = *(const char **)_a;
/haiku/src/apps/showimage/
H A DSupportingAppsMenu.cpp16 compare_menu_items(const void* _a, const void* _b) argument
18 BMenuItem* a = *(BMenuItem**)_a;
/haiku/src/system/kernel/scheduler/
H A Dscheduler_profiler.cpp261 Profiler::_CompareFunctions(const void* _a, const void* _b)
263 const FunctionData* a = static_cast<const FunctionData*>(_a);
276 Profiler::_CompareFunctionsPerCall(const void* _a, const void* _b)
278 const FunctionData* a = static_cast<const FunctionData*>(_a);
/haiku/src/apps/debuganalyzer/gui/table/
H A DTableColumns.cpp225 BigtimeTableColumn::CompareValues(const BVariant& _a, const BVariant& _b) argument
227 bigtime_t a = _a.ToInt64();
273 NanotimeTableColumn::CompareValues(const BVariant& _a, const BVariant& _b) argument
275 nanotime_t a = _a.ToInt64();
/haiku/src/preferences/filetypes/
H A DExtensionWindow.cpp35 compare_extensions(const void* _a, const void* _b) argument
37 const char* a = *(const char **)_a;
H A DPreferredAppMenu.cpp29 compare_menu_items(const void* _a, const void* _b) argument
31 BMenuItem* a = *(BMenuItem**)_a;
/haiku/src/kits/storage/disk_device/
H A DDiskDeviceJobGenerator.h73 static int _CompareMoveInfoPosition(const void* _a,
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DShareAttrDir.cpp34 compare_attributes(const void* _a, const void* _b) argument
36 return compare_attributes(*(const Attribute**)_a, *(const Attribute**)_b);
51 compare_iterators(const void* _a, const void* _b) argument
53 return compare_iterators(*(const ShareAttrDirIterator**)_a,
/haiku/src/libs/compat/freebsd_network/compat/sys/
H A Dhaiku-module.h279 #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
/haiku/src/libs/glut/
H A Dglut_shapes.c280 #define DIFF3(_a,_b,_c) { \
281 (_c)[0] = (_a)[0] - (_b)[0]; \
282 (_c)[1] = (_a)[1] - (_b)[1]; \
283 (_c)[2] = (_a)[2] - (_b)[2]; \
/haiku/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_regdomain.c190 #define swap(_a, _b, _size) { \
194 uint8_t tmp = *_a; \
195 *_a++ = *s; \
198 _a -= _size; \
/haiku/src/apps/firstbootprompt/
H A DBootPromptWindow.cpp110 compare_void_list_items(const void* _a, const void* _b) argument
114 LanguageItem* a = *(LanguageItem**)_a;
122 compare_void_menu_items(const void* _a, const void* _b) argument
126 BMenuItem* a = *(BMenuItem**)_a;
/haiku/src/servers/app/drawing/Painter/drawing_modes/
H A DDrawingMode.h175 uint16 _a = (a) / 255; \
176 BLEND_COMPOSITE(d, r, g, b, _a); \
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ah_regdomain/
H A Dah_rd_domains.h33 #define W0(_a) \
34 (((_a) >= 0 && (_a) < 64 ? (((uint64_t) 1)<<(_a)) : (uint64_t) 0))
35 #define W1(_a) \
36 (((_a) > 63 && (_a) < 128 ? (((uint64_t) 1)<<((_a)-64)) : (uint64_t) 0))

Completed in 179 milliseconds

12