/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/cmsis-dsp/Source/FilteringFunctions/ |
A D | arm_fir_interpolate_q15.c | 126 c0 = *(ptr2); in arm_fir_interpolate_q15() 184 c0 = *(ptr2); in arm_fir_interpolate_q15() 191 ptr2 += S->L; in arm_fir_interpolate_q15() 256 c0 = *(ptr2); in arm_fir_interpolate_q15() 261 ptr2 += S->L; in arm_fir_interpolate_q15() 270 c0 = *(ptr2); in arm_fir_interpolate_q15() 273 ptr2 += S->L; in arm_fir_interpolate_q15() 282 c0 = *(ptr2); in arm_fir_interpolate_q15() 285 ptr2 += S->L; in arm_fir_interpolate_q15() 294 c0 = *(ptr2); in arm_fir_interpolate_q15() [all …]
|
A D | arm_fir_interpolate_q31.c | 127 c0 = *(ptr2); in arm_fir_interpolate_q31() 185 c0 = *(ptr2); in arm_fir_interpolate_q31() 192 ptr2 += S->L; in arm_fir_interpolate_q31() 258 c0 = *(ptr2); in arm_fir_interpolate_q31() 263 ptr2 += S->L; in arm_fir_interpolate_q31() 272 c0 = *(ptr2); in arm_fir_interpolate_q31() 275 ptr2 += S->L; in arm_fir_interpolate_q31() 284 c0 = *(ptr2); in arm_fir_interpolate_q31() 287 ptr2 += S->L; in arm_fir_interpolate_q31() 296 c0 = *(ptr2); in arm_fir_interpolate_q31() [all …]
|
A D | arm_fir_interpolate_f32.c | 207 c0 = *(ptr2); in arm_fir_interpolate_f32() 271 c0 = *(ptr2); in arm_fir_interpolate_f32() 280 ptr2 += S->L; in arm_fir_interpolate_f32() 347 c0 = *(ptr2); in arm_fir_interpolate_f32() 352 ptr2 += S->L; in arm_fir_interpolate_f32() 361 c0 = *(ptr2); in arm_fir_interpolate_f32() 364 ptr2 += S->L; in arm_fir_interpolate_f32() 373 c0 = *(ptr2); in arm_fir_interpolate_f32() 376 ptr2 += S->L; in arm_fir_interpolate_f32() 385 c0 = *(ptr2); in arm_fir_interpolate_f32() [all …]
|
/AliOS-Things-master/components/py_engine/tests/extmod/ |
A D | uctypes_ptr_le.py | 27 print(addr == int(S.ptr2)) 35 print(S.ptr2[0].b, S.ptr2[1].b) 36 print(S.ptr2[0].b, S.ptr2[1].b) 38 assert (S.ptr2[0].b, S.ptr2[1].b) == (48, 49)
|
A D | uctypes_ptr_native_le.py | 33 print(S.ptr2[0].b, S.ptr2[1].b) 34 print(S.ptr2[0].b, S.ptr2[1].b) 36 assert (S.ptr2[0].b, S.ptr2[1].b) == (48, 49)
|
/AliOS-Things-master/components/lwip/lwip2.0.0/core/ |
A D | mem.c | 477 mem_size_t ptr, ptr2; in mem_trim() local 534 ptr2 = ptr + SIZEOF_STRUCT_MEM + newsize; in mem_trim() 536 lfree = (struct mem *)(void *)&ram[ptr2]; in mem_trim() 538 mem2 = (struct mem *)(void *)&ram[ptr2]; in mem_trim() 545 mem->next = ptr2; in mem_trim() 562 ptr2 = ptr + SIZEOF_STRUCT_MEM + newsize; in mem_trim() 563 mem2 = (struct mem *)(void *)&ram[ptr2]; in mem_trim() 570 mem->next = ptr2; in mem_trim() 601 mem_size_t ptr, ptr2; in mem_malloc() local 669 ptr2 = ptr + SIZEOF_STRUCT_MEM + size; in mem_malloc() [all …]
|
/AliOS-Things-master/components/py_engine/engine/extmod/nimble/nimble/ |
A D | nimble_npl_os.c | 160 void *ptr2 = m_malloc_bluetooth(new_size); in nimble_realloc() local 163 memcpy(ptr2, ptr, old_size); in nimble_realloc() 166 DEBUG_MALLOC_printf(" --> %p\n", ptr2); in nimble_realloc() 168 return ptr2; in nimble_realloc()
|
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | gc.c | 653 void *ptr2 = gc_alloc(n_bytes, has_finaliser); 654 if (ptr2 == NULL) { 655 return ptr2; 657 memcpy(ptr2, ptr, n_existing); 659 return ptr2;
|
/AliOS-Things-master/components/SDL2/src/audio/directsound/ |
A D | SDL_directsound.c | 315 VOID *ptr1, *ptr2; in DSOUND_CaptureFromDevice() local 335 …rebuf, h->lastchunk * this->spec.size, this->spec.size, &ptr1, &ptr1len, &ptr2, &ptr2len, 0) != DS… in DSOUND_CaptureFromDevice() 340 SDL_assert(ptr2 == NULL); in DSOUND_CaptureFromDevice() 345 if (IDirectSoundCaptureBuffer_Unlock(h->capturebuf, ptr1, ptr1len, ptr2, ptr2len) != DS_OK) { in DSOUND_CaptureFromDevice()
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/utils/ |
A D | huffman_encode_utils.c | 122 static int CompareHuffmanTrees(const void* ptr1, const void* ptr2) { in CompareHuffmanTrees() argument 124 const HuffmanTree* const t2 = (const HuffmanTree*)ptr2; in CompareHuffmanTrees()
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/extras/ |
A D | get_disto.c | 80 const uint8_t* const ptr2 = src2 + y * stride2; in DiffScaleChannel() local 82 const int diff = abs(ptr1[x] - ptr2[x]); in DiffScaleChannel()
|
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/ |
A D | transupp.c | 237 JCOEFPTR ptr1, ptr2; in do_flip_h_no_crop() local 262 ptr2 = buffer[offset_y][comp_width - blk_x - 1]; in do_flip_h_no_crop() 266 temp2 = *ptr2; in do_flip_h_no_crop() 268 *ptr2++ = temp1; in do_flip_h_no_crop() 270 temp2 = *ptr2; in do_flip_h_no_crop() 272 *ptr2++ = -temp1; in do_flip_h_no_crop()
|