Home
last modified time | relevance | path

Searched refs:buff (Results 76 - 100 of 332) sorted by relevance

12345678910>>...14

/third_party/skia/third_party/externals/oboe/samples/debug-utils/
H A Dtrace.cpp43 static char buff[TRACE_MAX_SECTION_NAME_LENGTH]; in beginSection() local
46 vsprintf(buff, fmt, args); in beginSection()
48 ATrace_beginSection(buff); in beginSection()
/third_party/mesa3d/src/gallium/drivers/lima/
H A Dlima_context.c48 lima_ctx_buff_va(struct lima_context *ctx, enum lima_ctx_buff buff) in lima_ctx_buff_va() argument
51 struct lima_ctx_buff_state *cbs = ctx->buffer_state + buff; in lima_ctx_buff_va()
53 int pipe = buff < lima_ctx_buff_num_gp ? LIMA_PIPE_GP : LIMA_PIPE_PP; in lima_ctx_buff_va()
61 lima_ctx_buff_map(struct lima_context *ctx, enum lima_ctx_buff buff) in lima_ctx_buff_map() argument
63 struct lima_ctx_buff_state *cbs = ctx->buffer_state + buff; in lima_ctx_buff_map()
70 lima_ctx_buff_alloc(struct lima_context *ctx, enum lima_ctx_buff buff, in lima_ctx_buff_alloc() argument
73 struct lima_ctx_buff_state *cbs = ctx->buffer_state + buff; in lima_ctx_buff_alloc()
/applications/sample/camera/cameraApp/cameraApp/src/main/cpp/
H A Dcamera_ability_slice.h90 char buff[20] = { 0 }; in UpdateTimeLabel() local
94 temp = sprintf_s(buff, sizeof(buff), "%02d : %02d", ss / 60, ss % 60); /* 60=1s */ in UpdateTimeLabel()
98 timeLabel_->SetText(buff); in UpdateTimeLabel()
/device/qemu/riscv32_virt/liteos_m/board/driver/cfiflash/
H A Dcfiflash_fs_hal.c56 static DSTATUS DiskIoctl(BYTE pdrv, BYTE cmd, void *buff) in DiskIoctl() argument
66 *(DWORD *)buff = CFIFLASH_SECTORS; in DiskIoctl()
69 *(WORD *)buff = CFIFLASH_SEC_SIZE; in DiskIoctl()
72 *(WORD *)buff = CFIFLASH_EXPECT_ERASE_REGION; in DiskIoctl()
/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/
H A Dmallocndk.cpp78 void *buff = (void *)memalign(align, PARAM_8 * align); in Memalign() local
79 if (buff != nullptr) { in Memalign()
84 free(buff); in Memalign()
87 buff = nullptr; in Memalign()
H A Dresolvndk.cpp165 unsigned char buff[MAXDNAME_A] = {0}; in Dn_expand() local
166 unsigned char *bufPtr = buff; in Dn_expand()
170 const unsigned char *eomorig = buff + MAXDNAME_A; in Dn_expand()
171 backParam = dn_expand(buff, eomorig, buff, expandDn, MAXDNAME_A); in Dn_expand()
H A Dpollndk.cpp91 char buff; in PollChk() local
92 while (read(fd[0], &buff, PARAM_1) > PARAM_0) in PollChk()
121 char buff; in PpollChk() local
122 while (read(fd[0], &buff, PARAM_1) > PARAM_0) in PpollChk()
/third_party/ffmpeg/libavutil/tests/
H A Dparseutils.c240 char buff[16]; in test_av_find_info_tag() local
244 if (av_find_info_tag(buff, sizeof(buff), tags[i], args)) in test_av_find_info_tag()
245 printf("%d. %s found: %s\n", i, tags[i], buff); in test_av_find_info_tag()
/third_party/musl/libc-test/src/functionalext/fortify/
H A Dpoll.c106 char buff; in poll_0030() local
107 while (read(fd[0], &buff, 1) > 0); in poll_0030()
198 char buff; in ppoll_0030() local
199 while (read(fd[0], &buff, 1) > 0); in ppoll_0030()
/third_party/FatFs/documents/res/
H A Dapp6.c15 void* buff, /* Read/write buffer */ in test_raw_speed()
35 if (disk_write(pdrv, buff, lba + ofs, sz_buff / ss) != RES_OK) { in test_raw_speed()
50 if (disk_read(pdrv, buff, lba + ofs, sz_buff / ss) != RES_OK) { in test_raw_speed()
11 test_raw_speed( BYTE pdrv, DWORD lba, DWORD len, void* buff, UINT sz_buff ) test_raw_speed() argument
H A Dapp4.c39 DWORD* buff, /* Pointer to the working buffer */ in test_diskio()
46 BYTE *pbuff = (BYTE*)buff; in test_diskio()
51 printf("test_diskio(%u, %u, 0x%08X, 0x%08X)\n", pdrv, ncyc, (UINT)buff, sz_buff); in test_diskio()
302 DWORD buff[FF_MAX_SS]; /* Working buffer (4 sector in size) */ in main() local
305 rc = test_diskio(0, 3, buff, sizeof buff); in main()
36 test_diskio( BYTE pdrv, UINT ncyc, DWORD* buff, UINT sz_buff ) test_diskio() argument
/third_party/musl/libc-test/src/functionalext/time/
H A Dgmtime_r.c44 char buff[gBufferSize]; in gmtime_r_0100() local
45 int cnt = sprintf(buff, "%d-%d-%d %d:%d:%d wday=%d,yday=%d,isdst=%d,gmtoff=%ld,zone=%s", in gmtime_r_0100()
50 EXPECT_STREQ("gmtime_r_0100", test_gmtime_data[i].result, buff); in gmtime_r_0100()
/third_party/selinux/libsepol/cil/src/
H A Dcil_log.c55 char buff[MAX_LOG_SIZE]; in cil_vlog() local
56 int n = vsnprintf(buff, MAX_LOG_SIZE, msg, args); in cil_vlog()
58 (*cil_log_handler)(cil_log_level, buff); in cil_vlog()
/third_party/skia/third_party/externals/freetype/src/gxvalid/
H A Dgxvcommn.c60 FT_UShort* buff, in gxv_set_length_by_ushort_offset()
72 buff[i] = offset[i]; in gxv_set_length_by_ushort_offset()
73 buff[nmemb] = limit; in gxv_set_length_by_ushort_offset()
75 ft_qsort( buff, ( nmemb + 1 ), sizeof ( FT_UShort ), in gxv_set_length_by_ushort_offset()
78 if ( buff[nmemb] > limit ) in gxv_set_length_by_ushort_offset()
87 if ( buff[j] == offset[i] ) in gxv_set_length_by_ushort_offset()
93 *(length[i]) = (FT_UShort)( buff[j + 1] - buff[j] ); in gxv_set_length_by_ushort_offset()
129 FT_ULong* buff, in gxv_set_length_by_ulong_offset()
141 buff[ in gxv_set_length_by_ulong_offset()
58 gxv_set_length_by_ushort_offset( FT_UShort* offset, FT_UShort** length, FT_UShort* buff, FT_UInt nmemb, FT_UShort limit, GXV_Validator gxvalid ) gxv_set_length_by_ushort_offset() argument
127 gxv_set_length_by_ulong_offset( FT_ULong* offset, FT_ULong** length, FT_ULong* buff, FT_UInt nmemb, FT_ULong limit, GXV_Validator gxvalid) gxv_set_length_by_ulong_offset() argument
1192 FT_UShort buff[4]; gxv_StateTable_subtable_setup() local
1322 FT_ULong buff[4]; gxv_XStateTable_subtable_setup() local
[all...]
/third_party/backends/sanei/
H A Dsanei_magic.c65 int * buff, double * finSlope, int * finXInter, int * finYInter);
70 static SANE_Status getLine (int height, int width, int * buff,
1269 int * buff, double * finSlope, int * finXInter, int * finYInter) in getTopEdge()
1308 ret = getLine(height,width,buff,slopes,minSlope+sStep2,maxSlope+sStep2,offsets,minOffset+oStep2,maxOffset+oStep2,&slope,&offset,&density); in getTopEdge()
1379 getLine (int height, int width, int * buff, in getLine() argument
1495 rise = buff[j] - buff[i]; in getLine()
1503 offset = slope * hWidth + buff[i] - slope * i; in getLine()
1682 int * buff; in sanei_magic_getTransY() local
1706 buff in sanei_magic_getTransY()
1268 getTopEdge(int width, int height, int resolution, int * buff, double * finSlope, int * finXInter, int * finYInter) getTopEdge() argument
1814 int * buff; sanei_magic_getTransX() local
[all...]
/third_party/mesa3d/src/gallium/drivers/lima/ir/gp/
H A Dinstr.c562 char buff[16] = "null"; in gpir_instr_print_prog() local
568 snprintf(buff + start, sizeof(buff) - start, "%d", node->index); in gpir_instr_print_prog()
569 printf("%-*s ", fields[j].len, buff); in gpir_instr_print_prog()
571 strcpy(buff, "null"); in gpir_instr_print_prog()
576 start += snprintf(buff + start, sizeof(buff) - start, "%d", node->index); in gpir_instr_print_prog()
577 start += snprintf(buff + start, sizeof(buff) - start, "|"); in gpir_instr_print_prog()
/third_party/toybox/toys/pending/
H A Ddd.c58 unsigned char *buff, *bp;
110 TT.out.bp = TT.out.buff; in write_out()
123 if (TT.out.count) memmove(TT.out.buff, TT.out.bp, TT.out.count); //move remainder to front in write_out()
185 TT.in.buff = TT.out.buff = xmalloc(TT.in.sz + (bs ? 0 : TT.out.sz)); in dd_main()
186 TT.in.bp = TT.out.bp = TT.in.buff; in dd_main()
247 TT.in.bp = TT.in.buff + TT.in.count; in dd_main()
289 if (TT.in.buff) free(TT.in.buff); in dd_main()
/third_party/python/Lib/idlelib/
H A Drpc.py348 buff = b'' variable in SocketIO
354 if len(self.buff) < self.bufneed:
364 self.buff += s
369 if self.bufstate == 0 and len(self.buff) >= 4:
370 s = self.buff[:4]
371 self.buff = self.buff[4:]
376 if self.bufstate == 1 and len(self.buff) >= self.bufneed:
377 packet = self.buff[:self.bufneed]
378 self.buff
[all...]
/third_party/node/deps/openssl/openssl/crypto/
H A Dmem.c143 char buff[80]; in shouldfail() local
146 BIO_snprintf(buff, sizeof(buff), in shouldfail()
149 len = strlen(buff); in shouldfail()
150 if (write(md_tracefd, buff, len) != len) in shouldfail()
/third_party/node/deps/openssl/openssl/crypto/modes/
H A Dwrap128.c277 unsigned char buff[16]; in CRYPTO_128_unwrap_pad() local
279 block(in, buff, key); in CRYPTO_128_unwrap_pad()
280 memcpy(aiv, buff, 8); in CRYPTO_128_unwrap_pad()
282 memcpy(out, buff + 8, 8); in CRYPTO_128_unwrap_pad()
284 OPENSSL_cleanse(buff, inlen); in CRYPTO_128_unwrap_pad()
/third_party/openssl/crypto/
H A Dmem.c139 char buff[80]; in shouldfail() local
142 BIO_snprintf(buff, sizeof(buff), in shouldfail()
145 len = strlen(buff); in shouldfail()
146 if (write(md_tracefd, buff, len) != len) in shouldfail()
/third_party/openssl/crypto/modes/
H A Dwrap128.c277 unsigned char buff[16]; in CRYPTO_128_unwrap_pad() local
279 block(in, buff, key); in CRYPTO_128_unwrap_pad()
280 memcpy(aiv, buff, 8); in CRYPTO_128_unwrap_pad()
282 memcpy(out, buff + 8, 8); in CRYPTO_128_unwrap_pad()
284 OPENSSL_cleanse(buff, inlen); in CRYPTO_128_unwrap_pad()
/test/xts/device_attest_lite/services/core/small/attest/
H A Dattest_service_pcid.c56 static int32_t EncodePcid(char *buff, int32_t bufLen, char **output) in EncodePcid() argument
58 if (output == NULL || buff == NULL || bufLen == 0) { in EncodePcid()
69 int32_t ret = Sha256Value((const uint8_t *)buff, bufLen, pcidSha256, PCID_STRING_LEN + 1); in EncodePcid()
/third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_memory_spread_test/
H A Dcpuset_mem_hog.c53 char buff[BUFFER_SIZE]; in page_cache_hog() local
64 while ((ret = read(fd, buff, sizeof(buff))) > 0) ; in page_cache_hog()
/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/oam/
H A Doam_ext_if.h53 #define oam_error_buf(vid, eid, fmt, buff, size) oam_print_err(fmt, buff, size)
60 #define oam_warning_buf(vid, eid, fmt, buff, size) oam_print_warn(fmt, buff, size)
68 #define oam_info_buf(vid, eid, fmt, buff, size) oam_print_info(fmt, buff, size)

Completed in 16 milliseconds

12345678910>>...14