Home
last modified time | relevance | path

Searched refs:p_buff (Results 1 – 25 of 62) sorted by relevance

123

/dports/net/openmpi/openmpi-4.1.1/oshmem/mca/memheap/ptmalloc/
H A Dmemheap_ptmalloc.c77 *p_buff = 0; in mca_memheap_ptmalloc_alloc()
82 *p_buff = dlmalloc(size); in mca_memheap_ptmalloc_alloc()
85 if (NULL == *p_buff) in mca_memheap_ptmalloc_alloc()
88 MCA_SPML_CALL(memuse_hook(*p_buff, size)); in mca_memheap_ptmalloc_alloc()
95 *p_buff = 0; in mca_memheap_ptmalloc_align()
100 *p_buff = 0; in mca_memheap_ptmalloc_align()
106 *p_buff = 0; in mca_memheap_ptmalloc_align()
111 *p_buff = dlmemalign(align, size); in mca_memheap_ptmalloc_align()
114 if (NULL == *p_buff) in mca_memheap_ptmalloc_align()
117 MCA_SPML_CALL(memuse_hook(*p_buff, size)); in mca_memheap_ptmalloc_align()
[all …]
/dports/net/openmpi3/openmpi-3.1.6/oshmem/mca/memheap/ptmalloc/
H A Dmemheap_ptmalloc.c77 *p_buff = 0; in mca_memheap_ptmalloc_alloc()
82 *p_buff = dlmalloc(size); in mca_memheap_ptmalloc_alloc()
85 if (NULL == *p_buff) in mca_memheap_ptmalloc_alloc()
88 MCA_SPML_CALL(memuse_hook(*p_buff, size)); in mca_memheap_ptmalloc_alloc()
95 *p_buff = 0; in mca_memheap_ptmalloc_align()
100 *p_buff = 0; in mca_memheap_ptmalloc_align()
106 *p_buff = 0; in mca_memheap_ptmalloc_align()
111 *p_buff = dlmemalign(align, size); in mca_memheap_ptmalloc_align()
114 if (NULL == *p_buff) in mca_memheap_ptmalloc_align()
117 MCA_SPML_CALL(memuse_hook(*p_buff, size)); in mca_memheap_ptmalloc_align()
[all …]
/dports/net/openmpi/openmpi-4.1.1/oshmem/mca/memheap/buddy/
H A Dmemheap_buddy.c434 void **p_buff, in _do_alloc() argument
445 *p_buff = 0; in _do_alloc()
471 *p_buff = (void*) addr; in _do_alloc()
500 return do_alloc(order, p_buff); in mca_memheap_buddy_alloc()
554 *p_buff = 0; in mca_memheap_buddy_align()
560 *p_buff = 0; in mca_memheap_buddy_align()
568 return do_alloc(order, p_buff); in mca_memheap_buddy_align()
580 if (NULL == p_buff) in mca_memheap_buddy_realloc()
583 addr = (unsigned long) p_buff; in mca_memheap_buddy_realloc()
604 *p_new_buff = p_buff; in mca_memheap_buddy_realloc()
[all …]
/dports/net/openmpi3/openmpi-3.1.6/oshmem/mca/memheap/buddy/
H A Dmemheap_buddy.c434 void **p_buff, in _do_alloc() argument
445 *p_buff = 0; in _do_alloc()
471 *p_buff = (void*) addr; in _do_alloc()
500 return do_alloc(order, p_buff); in mca_memheap_buddy_alloc()
554 *p_buff = 0; in mca_memheap_buddy_align()
560 *p_buff = 0; in mca_memheap_buddy_align()
568 return do_alloc(order, p_buff); in mca_memheap_buddy_align()
580 if (NULL == p_buff) in mca_memheap_buddy_realloc()
583 addr = (unsigned long) p_buff; in mca_memheap_buddy_realloc()
604 *p_new_buff = p_buff; in mca_memheap_buddy_realloc()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/tools/v8windbg/base/
H A Dutilities.h24 char16_t* p_buff = in ConvertToU16String() local
31 reinterpret_cast<wchar_t*>(p_buff), len_chars); in ConvertToU16String()
32 std::u16string result{p_buff}; in ConvertToU16String()
33 free(p_buff); in ConvertToU16String()
/dports/lang/v8/v8-9.6.180.12/tools/v8windbg/base/
H A Dutilities.h24 char16_t* p_buff = in ConvertToU16String() local
31 reinterpret_cast<wchar_t*>(p_buff), len_chars); in ConvertToU16String()
32 std::u16string result{p_buff}; in ConvertToU16String()
33 free(p_buff); in ConvertToU16String()
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/tools/v8windbg/base/
H A Dutilities.h24 char16_t* p_buff = in ConvertToU16String() local
31 reinterpret_cast<wchar_t*>(p_buff), len_chars); in ConvertToU16String()
32 std::u16string result{p_buff}; in ConvertToU16String()
33 free(p_buff); in ConvertToU16String()
/dports/multimedia/l-smash/l-smash-2.14.5/core/
H A Dchapter.c98 …char *p_buff = &buff[ !memcmp( buff, UTF8_BOM, UTF8_BOM_LENGTH ) ? UTF8_BOM_LENGTH : 0 ]; /* BOM… in isom_read_minimum_chapter() local
99 if( isom_get_start_time( p_buff, data ) < 0 ) /* get start_time */ in isom_read_minimum_chapter()
128 …char *p_buff = &buff[ !memcmp( buff, UTF8_BOM, UTF8_BOM_LENGTH ) ? UTF8_BOM_LENGTH : 0 ]; /* BOM… in isom_check_chap_line() local
129 if( !strncmp( p_buff, "CHAPTER", 7 ) ) in isom_check_chap_line()
131 …else if( isdigit( (unsigned char)p_buff[0] ) && isdigit( (unsigned char)p_buff[1] ) && p_buff[2] =… in isom_check_chap_line()
132 …&& isdigit( (unsigned char)p_buff[3] ) && isdigit( (unsigned char)p_buff[4] ) && p_buff[5] == ':' ) in isom_check_chap_line()
/dports/www/davix/davix-0.7.6/src/backend/
H A DBackendRequest.cpp196 dav_ssize_t BackendRequest::readSegment(char* p_buff, dav_size_t size_read, bool stop_at_line_bound… in readSegment() argument
205 tmp_ret= readBlock(p_buff, s_read, &tmp_err); in readSegment()
207 …if(tmp_ret > 0 && stop_at_line_boundary && std::find(p_buff, p_buff+tmp_ret, '\n') != p_buff+tmp_r… in readSegment()
216 p_buff+= tmp_ret; in readSegment()
/dports/games/moria/umoria/atari_st/
H A Dst-stuff.c31 { char p_buff[80]; local
33 p = (char *)p_buff;
/dports/multimedia/vlc/vlc-3.0.16/modules/demux/avi/
H A Dlibavi.c42 static vlc_fourcc_t GetFOURCC( const uint8_t *p_buff ) in GetFOURCC() argument
44 return VLC_FOURCC( p_buff[0], p_buff[1], p_buff[2], p_buff[3] ); in GetFOURCC()
312 uint8_t *p_read, *p_buff; \
313 if( !( p_read = p_buff = malloc(i_read ) ) ) \
320 free( p_buff ); \
328 free( p_buff); \
337 free( p_buff ); \
471 p_buff + 8 + sizeof( WAVEFORMATEX ), /* 8=fourcc+size */ in AVI_ChunkRead_strf()
513 p_buff + 8 + sizeof(VLC_BITMAPINFOHEADER), /* 8=fourrc+size */ in AVI_ChunkRead_strf()
584 memcpy( p_chk->strd.p_data, p_buff + 8, p_chk->common.i_chunk_size ); in AVI_ChunkRead_strd()
/dports/devel/godot2-tools/godot-2.1.6-stable/core/
H A Dhashfuncs.h58 static inline uint32_t hash_djb2_buffer(const uint8_t *p_buff, int p_len, uint32_t p_prev = 5381) {
63 hash = ((hash << 5) + hash) + p_buff[i]; /* hash * 33 + c */
/dports/devel/godot2/godot-2.1.6-stable/core/
H A Dhashfuncs.h58 static inline uint32_t hash_djb2_buffer(const uint8_t *p_buff, int p_len, uint32_t p_prev = 5381) {
63 hash = ((hash << 5) + hash) + p_buff[i]; /* hash * 33 + c */
/dports/math/R-cran-sf/sf/man/
H A Daggregate.sf.Rd57 p_buff = st_buffer(p, 0.2)
58 plot(p_buff, add = TRUE)
59 (p_ag2 = aggregate(p_buff, pol, mean)) # increased mean of second
/dports/sysutils/atf-sun50i_h6/arm-trusted-firmware-2.5/drivers/st/i2c/
H A Dstm32_i2c.c535 uint8_t *p_buff = p_data; in i2c_write() local
602 mmio_write_8(hi2c->i2c_base_addr + I2C_TXDR, *p_buff); in i2c_write()
603 p_buff++; in i2c_write()
716 uint8_t *p_buff = p_data; in i2c_read() local
773 *p_buff = mmio_read_8(hi2c->i2c_base_addr + I2C_RXDR); in i2c_read()
774 p_buff++; in i2c_read()
/dports/sysutils/atf-rk3399/arm-trusted-firmware-2.5/drivers/st/i2c/
H A Dstm32_i2c.c535 uint8_t *p_buff = p_data; in i2c_write() local
602 mmio_write_8(hi2c->i2c_base_addr + I2C_TXDR, *p_buff); in i2c_write()
603 p_buff++; in i2c_write()
716 uint8_t *p_buff = p_data; in i2c_read() local
773 *p_buff = mmio_read_8(hi2c->i2c_base_addr + I2C_RXDR); in i2c_read()
774 p_buff++; in i2c_read()
/dports/sysutils/atf-sun50i_a64/arm-trusted-firmware-2.5/drivers/st/i2c/
H A Dstm32_i2c.c535 uint8_t *p_buff = p_data; in i2c_write() local
602 mmio_write_8(hi2c->i2c_base_addr + I2C_TXDR, *p_buff); in i2c_write()
603 p_buff++; in i2c_write()
716 uint8_t *p_buff = p_data; in i2c_read() local
773 *p_buff = mmio_read_8(hi2c->i2c_base_addr + I2C_RXDR); in i2c_read()
774 p_buff++; in i2c_read()
/dports/sysutils/atf-rk3328/arm-trusted-firmware-2.5/drivers/st/i2c/
H A Dstm32_i2c.c535 uint8_t *p_buff = p_data; in i2c_write() local
602 mmio_write_8(hi2c->i2c_base_addr + I2C_TXDR, *p_buff); in i2c_write()
603 p_buff++; in i2c_write()
716 uint8_t *p_buff = p_data; in i2c_read() local
773 *p_buff = mmio_read_8(hi2c->i2c_base_addr + I2C_RXDR); in i2c_read()
774 p_buff++; in i2c_read()
/dports/sysutils/atf-fvp/arm-trusted-firmware-2.5/drivers/st/i2c/
H A Dstm32_i2c.c535 uint8_t *p_buff = p_data; in i2c_write() local
602 mmio_write_8(hi2c->i2c_base_addr + I2C_TXDR, *p_buff); in i2c_write()
603 p_buff++; in i2c_write()
716 uint8_t *p_buff = p_data; in i2c_read() local
773 *p_buff = mmio_read_8(hi2c->i2c_base_addr + I2C_RXDR); in i2c_read()
774 p_buff++; in i2c_read()
/dports/devel/godot/godot-3.2.3-stable/core/
H A Dhashfuncs.h62 static inline uint32_t hash_djb2_buffer(const uint8_t *p_buff, int p_len, uint32_t p_prev = 5381) {
67 hash = ((hash << 5) + hash) + p_buff[i]; /* hash * 33 + c */
/dports/devel/godot-tools/godot-3.2.3-stable/core/
H A Dhashfuncs.h62 static inline uint32_t hash_djb2_buffer(const uint8_t *p_buff, int p_len, uint32_t p_prev = 5381) {
67 hash = ((hash << 5) + hash) + p_buff[i]; /* hash * 33 + c */
/dports/devel/cvsps/cvsps-2.1/
H A Dcache.c347 static void parse_cache_revision(PatchSetMember * psm, const char * p_buff) in parse_cache_revision() argument
362 strcpy(buff, p_buff); in parse_cache_revision()
370 debug(DEBUG_APPERROR, "invalid cache revision line '%s'|'%s'", p_buff, s); in parse_cache_revision()
/dports/devel/cvsps-devel/cvsps-2.2b1/
H A Dcache.c347 static void parse_cache_revision(PatchSetMember * psm, const char * p_buff) in parse_cache_revision() argument
362 strcpy(buff, p_buff); in parse_cache_revision()
370 debug(DEBUG_APPERROR, "invalid cache revision line '%s'|'%s'", p_buff, s); in parse_cache_revision()
/dports/japanese/timidity++-slang/TiMidity++-2.15.0/interface/
H A Dw32g_subwin3.c974 char *p_buff; local
1027 p_buff = "----";
1030 p_buff = "55 T";
1033 p_buff = "55 D";
1036 p_buff = "88 T";
1039 p_buff = "88 D";
1048 p_buff = "8850 T";
1054 p_buff = "XG";
1063 p_buff = "XG D";
1066 p_buff = "GM2 T";
[all …]
/dports/audio/ocp/ocp-0.2.90/playgmi/timidity-git/interface/
H A Dw32g_subwin3.c974 char *p_buff; local
1027 p_buff = "----";
1030 p_buff = "55 T";
1033 p_buff = "55 D";
1036 p_buff = "88 T";
1039 p_buff = "88 D";
1048 p_buff = "8850 T";
1054 p_buff = "XG";
1063 p_buff = "XG D";
1066 p_buff = "GM2 T";
[all …]

123