/interface/sdk_c/third_party/musl/ndk_musl_include/ |
D | tgmath.h | 16 #define __IS_FP(x) (sizeof((x)+1ULL) == sizeof((x)+1.0f)) argument 17 #define __IS_CX(x) (__IS_FP(x) && sizeof(x) == sizeof((x)+I)) argument 18 #define __IS_REAL(x) (__IS_FP(x) && 2*sizeof(x) == sizeof((x)+I)) argument 20 #define __FLT(x) (__IS_REAL(x) && sizeof(x) == sizeof(float)) argument 21 #define __LDBL(x) (__IS_REAL(x) && sizeof(x) == sizeof(long double) && sizeof(long double) != sizeo… argument 23 #define __FLTCX(x) (__IS_CX(x) && sizeof(x) == sizeof(float complex)) argument 24 #define __DBLCX(x) (__IS_CX(x) && sizeof(x) == sizeof(double complex)) argument 25 #define __LDBLCX(x) (__IS_CX(x) && sizeof(x) == sizeof(long double complex) && sizeof(long double) … argument 50 #define __RETCAST(x) ( \ argument 53 #define __RETCAST_2(x, y) ( \ argument [all …]
|
D | endian.h | 35 #define htobe16(x) __bswap16(x) argument 36 #define be16toh(x) __bswap16(x) argument 37 #define htobe32(x) __bswap32(x) argument 38 #define be32toh(x) __bswap32(x) argument 39 #define htobe64(x) __bswap64(x) argument 40 #define be64toh(x) __bswap64(x) argument 41 #define htole16(x) (uint16_t)(x) argument 42 #define le16toh(x) (uint16_t)(x) argument 43 #define htole32(x) (uint32_t)(x) argument 44 #define le32toh(x) (uint32_t)(x) argument [all …]
|
D | complex.h | 105 #define __CIMAG(x, t) \ argument 108 #define creal(x) ((double)(x)) argument 109 #define crealf(x) ((float)(x)) argument 110 #define creall(x) ((long double)(x)) argument 112 #define cimag(x) __CIMAG(x, double) argument 113 #define cimagf(x) __CIMAG(x, float) argument 114 #define cimagl(x) __CIMAG(x, long double) argument 119 #define __CMPLX(x, y, t) ((t)(x) + _Imaginary_I*(t)(y)) argument 121 #define __CMPLX(x, y, t) (+(_Complex t){ (t)(x), (t)(y) }) argument 123 #define __CMPLX(x, y, t) (__builtin_complex((t)(x), (t)(y))) argument [all …]
|
D | math.h | 68 #define fpclassify(x) ( \ argument 73 #define isinf(x) ( \ argument 78 #define isnan(x) ( \ argument 83 #define isnormal(x) ( \ argument 88 #define isfinite(x) ( \ argument 97 #define signbit(x) ( \ argument 102 #define isunordered(x,y) (isnan((x)) ? ((void)(y),1) : isnan((y))) argument 124 #define __tg_pred_2(x, y, p) ( \ argument 129 #define isless(x, y) __tg_pred_2(x, y, __isless) argument 130 #define islessequal(x, y) __tg_pred_2(x, y, __islessequal) argument [all …]
|
D | byteswap.h | 22 #define bswap_16(x) __bswap_16(x) argument 23 #define bswap_32(x) __bswap_32(x) argument 24 #define bswap_64(x) __bswap_64(x) argument
|
D | assert.h | 6 #define assert(x) (void)0 argument 8 #define assert(x) ((void)((x) || (__assert_fail(#x, __FILE__, __LINE__, __func__),0))) argument
|
D | dirent.h | 50 #define IFTODT(x) ((x)>>12 & 017) argument 51 #define DTTOIF(x) ((x)<<12) argument
|
D | string.h | 88 #define strdupa(x) strcpy(alloca(strlen(x)+1),x) argument
|
D | features.h | 38 #define __REDIR(x,y) __typeof__(x) x __asm__(#y) argument
|
D | pthread.h | 101 #define pthread_equal(x,y) ((x)==(y)) argument 358 #define pthread_cleanup_push(f, x) do { struct __ptcb __cb; _pthread_cleanup_push(&__cb, f, x); argument
|
/interface/sdk_c/third_party/musl/ndk_musl_include/sys/ |
D | sysmacros.h | 4 #define major(x) \ argument 6 #define minor(x) \ argument 9 #define makedev(x,y) ( \ argument
|
D | cdefs.h | 49 #define __CONCAT(x,y) x ## y argument 50 #define __STRING(x) #x argument 52 #define __aligned(x) __attribute__((__aligned__(x))) argument 53 #define __section(x) __attribute__((__section__(x))) argument 66 #define __printflike(x, y) __attribute__((__format__(printf, x, y))) argument 67 #define __scanflike(x, y) __attribute__((__format__(scanf, x, y))) argument 68 #define __strftimelike(x) __attribute__((__format__(strftime, x, 0))) argument
|
D | param.h | 21 #define __bitop(x,i,o) ((x)[(i)/8] o (1<<(i)%8)) argument 22 #define setbit(x,i) __bitop(x,i,|=) argument 23 #define clrbit(x,i) __bitop(x,i,&=~) argument 24 #define isset(x,i) __bitop(x,i,&) argument 25 #define isclr(x,i) !isset(x,i) argument
|
D | mtio.h | 141 #define GMT_EOF(x) ((x) & 0x80000000) argument 142 #define GMT_BOT(x) ((x) & 0x40000000) argument 143 #define GMT_EOT(x) ((x) & 0x20000000) argument 144 #define GMT_SM(x) ((x) & 0x10000000) argument 145 #define GMT_EOD(x) ((x) & 0x08000000) argument 146 #define GMT_WR_PROT(x) ((x) & 0x04000000) argument 147 #define GMT_ONLINE(x) ((x) & 0x01000000) argument 148 #define GMT_D_6250(x) ((x) & 0x00800000) argument 149 #define GMT_D_1600(x) ((x) & 0x00400000) argument 150 #define GMT_D_800(x) ((x) & 0x00200000) argument [all …]
|
/interface/sdk_c/third_party/libuv/include/uv/ |
D | tree.h | 283 #define SPLAY_INSERT(name, x, y) name##_SPLAY_INSERT(x, y) argument 284 #define SPLAY_REMOVE(name, x, y) name##_SPLAY_REMOVE(x, y) argument 285 #define SPLAY_FIND(name, x, y) name##_SPLAY_FIND(x, y) argument 286 #define SPLAY_NEXT(name, x, y) name##_SPLAY_NEXT(x, y) argument 287 #define SPLAY_MIN(name, x) (SPLAY_EMPTY(x) ? NULL \ argument 289 #define SPLAY_MAX(name, x) (SPLAY_EMPTY(x) ? NULL \ argument 292 #define SPLAY_FOREACH(x, name, head) \ argument 339 #define RB_AUGMENT(x) do {} while (0) argument 729 #define RB_INSERT(name, x, y) name##_RB_INSERT(x, y) argument 730 #define RB_REMOVE(name, x, y) name##_RB_REMOVE(x, y) argument [all …]
|
/interface/sdk-js/api/ |
D | @ohos.arkui.componentUtils.d.ts | 246 x: number property 292 x: number property 353 x: number property 444 x: number property
|
D | @ohos.matrix4.d.ts | 95 x?: number; property 199 x?: number; property 355 x?: number; property
|
D | @ohos.sensor.d.ts | 2996 x: number; property 3042 x: number; property 3074 x: number; property 3133 x: number; property 3225 x: number; property 3279 x: number; property 3325 x: number; property 3447 x: number; property 3479 x: number; property
|
D | @ohos.multimodalInput.gestureEvent.d.ts | 95 x: number; property 128 x: number; property
|
D | @system.sensor.d.ts | 38 x: number; property 563 x: number; property
|
/interface/sdk_c/third_party/musl/ndk_musl_include/arpa/ |
D | telnet.h | 31 #define TELCMD_OK(x) ((unsigned int)(x) <= TELCMD_LAST && \ argument 33 #define TELCMD(x) telcmds[(x)-TELCMD_FIRST] argument 95 #define TELOPT_OK(x) ((unsigned int)(x) <= TELOPT_LAST) argument 96 #define TELOPT(x) telopts[(x)-TELOPT_FIRST] argument 162 #define SLC_NAME_OK(x) ((unsigned int)(x) <= NSLC) argument 163 #define SLC_NAME(x) slc_names[x] argument 211 #define AUTHTYPE_NAME_OK(x) ((unsigned int)(x) < AUTHTYPE_CNT) argument 212 #define AUTHTYPE_NAME(x) authtype_names[x] argument 245 #define ENCRYPT_NAME_OK(x) ((unsigned int)(x) < ENCRYPT_CNT) argument 246 #define ENCRYPT_NAME(x) encrypt_names[x] argument [all …]
|
/interface/sdk_c/third_party/musl/ndk_musl_include/fortify/ |
D | unistd.h | 53 #define __DIAGNOSE_PREAD_PREFIX(x) __pread_ ## x argument 54 #define __DIAGNOSE_PWRITE_PREFIX(x) __pwrite_ ## x argument
|
D | fortify.h | 74 #define __DIAGNOSE_PRINTFLIKE(x, y) __attribute__((__format__(printf, x, y))) argument 109 #define __DIAGNOSE_RENAME(x) __asm__(#x) argument 115 #define __DIAGNOSE_UNSAFE_CHK_MUL_OVERFLOW(x, y) ((__SIZE_TYPE__)-1 / (x) < (y)) argument
|
/interface/sdk-js/api/@internal/component/ets/ |
D | common.d.ts | 1215 x?: Length; property 2258 x?: number | string; property 2402 x?: number; property 2831 x?: number; property
|
/interface/sdk_c/arkui/ace_engine/native/ |
D | native_interface_xcomponent.h | 192 float x; member 219 float x; member 243 float x; member 270 float x; member
|