Searched refs:SWAP (Results 1 – 8 of 8) sorted by relevance
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/fwlib/include/ |
A D | rtl8721d_i2s.h | 198 #define IS_I2S_ENDIAN_SWAP(SWAP) (((SWAP) == I2S_ES_LITTLE) || \ argument 199 ((SWAP) == I2S_ES_BIG)) 271 #define IS_I2S_SCK_SWAP(SWAP) (((SWAP) == I2S_SCK_NOINV) || \ argument 272 ((SWAP) == I2S_SCK_INV)) 284 #define IS_I2S_WS_SWAP(SWAP) (((SWAP) == I2S_WS_LEFT_PHA) || \ argument 285 ((SWAP) == I2S_WS_RIGHT_PHA)) 297 #define IS_I2S_EDGE_SWAP(SWAP) (((SWAP) == I2S_NEGATIVE_EDGE) || \ argument 298 ((SWAP) == I2S_POSITIVE_EDGE))
|
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | sequence.c | 34 #define SWAP(type, var1, var2) { type t = var2; var2 = var1; var1 = t; } macro 99 SWAP(const byte *, data1, data2); in mp_seq_cmp_bytes() 100 SWAP(size_t, len1, len2); in mp_seq_cmp_bytes() 143 SWAP(const mp_obj_t *, items1, items2); in mp_seq_cmp_objs() 144 SWAP(size_t, len1, len2); in mp_seq_cmp_objs()
|
/AliOS-Things-master/components/lwip/lwip2.0.0/netif/ppp/polarssl/ |
A D | des.c | 298 #define SWAP(a,b) { unsigned long t = a; a = b; b = t; t = 0; } macro 388 SWAP( ctx->sk[i ], ctx->sk[30 - i] ); in des_setkey_dec() 389 SWAP( ctx->sk[i + 1], ctx->sk[31 - i] ); in des_setkey_dec()
|
/AliOS-Things-master/components/SDL2/test/ |
A D | testintersections.c | 25 #define SWAP(typ,a,b) do{typ t=a;a=b;b=t;}while(0) macro 139 SWAP(int, x1, x2); in add_rect() 141 SWAP(int, y1, y2); in add_rect()
|
/AliOS-Things-master/components/mbedtls/library/ |
A D | havege.c | 57 #define SWAP(X,Y) { int *T = X; X = Y; Y = T; } macro 99 if( PTEST & 1 ) SWAP( A, C ); \
|
A D | des.c | 303 #define SWAP(a,b) { uint32_t t = a; a = b; b = t; t = 0; } macro 511 SWAP( ctx->sk[i ], ctx->sk[30 - i] ); in mbedtls_des_setkey_dec() 512 SWAP( ctx->sk[i + 1], ctx->sk[31 - i] ); in mbedtls_des_setkey_dec()
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/libtiff/ |
A D | tif_fax3.c | 265 #define SWAP(t,a,b) { t x; x = (a); (a) = (b); (b) = x; } macro 306 SWAP(uint32*, sp->curruns, sp->refruns); in Fax3Decode2D() 321 #undef SWAP 1429 #define SWAP(t,a,b) { t x; x = (a); (a) = (b); (b) = x; } macro 1460 SWAP(uint32*, sp->curruns, sp->refruns); in Fax4Decode() 1480 #undef SWAP
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/tools/ |
A D | tiffmedian.c | 788 #define SWAP(type,a,b) { type p; p = a; a = b; b = p; } macro 833 SWAP(short *, thisline, nextline); in quant_fsdither()
|
Completed in 13 milliseconds