Searched defs:buffer (Results 51 - 75 of 3822) sorted by relevance

1234567891011>>

/external/valgrind/main/none/tests/s390x/
H A Dex.c3 char buffer[] ="0123456789abcdef"; variable
10 printf("------- Copy 10+1 bytes from buffer to target\n");
12 printf("before: buffer = |%s|\n", buffer);
21 : : "a" (target), "a" (buffer): "1", "2", "memory");
22 printf("after: buffer = |%s|\n", buffer);
H A Dexrl.c3 char buffer[] ="0123456789abcdef"; variable
10 printf("------- Copy 10+1 bytes from buffer to target\n");
12 printf("before: buffer = |%s|\n", buffer);
20 : : "a" (target), "a" (buffer) : "1", "2", "memory");
21 printf("after: buffer = |%s|\n", buffer);
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DAMutableArray.h17 __strong NSMutableData *buffer; variable
47 @property (retain) NSMutableData *buffer; variable
/external/chromium_org/content/common/
H A Dgamepad_hardware_buffer.h21 Writer and reader operate on the same buffer assuming contention is low, and
29 blink::WebGamepads buffer; member in struct:content::GamepadHardwareBuffer
/external/chromium_org/courgette/
H A Dcrc.cc19 uint32 CalculateCrc(const uint8* buffer, size_t size) { argument
24 crc = crc32(0, buffer, size);
28 crc = CrcCalc(buffer, size);
/external/chromium_org/ppapi/cpp/dev/
H A Dcrypto_dev.cc21 bool Crypto_Dev::GetRandomBytes(char* buffer, uint32_t num_bytes) { argument
23 get_interface<PPB_Crypto_Dev_0_1>()->GetRandomBytes(buffer, num_bytes);
/external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
H A DOpenTypeSanitizer.h42 explicit OpenTypeSanitizer(SharedBuffer* buffer) argument
43 : m_buffer(buffer)
/external/chromium_org/third_party/libsrtp/srtp/include/
H A Dut_sim.h58 uint32_t buffer[UT_BUF]; member in struct:__anon12845
/external/chromium_org/third_party/skia/src/ports/
H A DSkDebug_win.cpp20 char buffer[kBufferSize + 1]; local
31 vsnprintf(buffer, kBufferSize, format, args);
34 OutputDebugStringA(buffer);
/external/chromium_org/third_party/skia/tests/
H A DDashPathEffectTest.cpp18 SkWriteBuffer buffer; local
19 buffer.writeFlattenable(dash);
20 REPORTER_ASSERT(r, buffer.bytesWritten() > 12); // We'd write 12 if broken, >=40 if not.
/external/chromium_org/third_party/smhasher/src/
H A Dsha1.h12 uint8_t buffer[64]; member in struct:SHA1_CTX
/external/clang/test/CodeGenCXX/
H A D2007-01-02-UnboundedArray.cpp8 char buffer[]; member in struct:Object
/external/clang/test/PCH/
H A Dattrs-PR8406.c14 int buffer[123] __attribute__((__aligned__(512))); member in struct:Bar
/external/clang/test/SemaTemplate/
H A Dinstantiate-sizeof.cpp6 int buffer[n]; local
7 [] { int x = sizeof(sizeof(buffer)); }();
/external/compiler-rt/test/asan/TestCases/Windows/
H A Ddll_poison_unpoison.cc17 char buffer[256]; local
18 should_not_crash(&buffer[0]);
19 __asan_poison_memory_region(buffer, 128);
20 should_not_crash(&buffer[192]);
21 __asan_unpoison_memory_region(buffer, 64);
22 should_not_crash(&buffer[32]);
24 should_crash(&buffer[96]);
33 // CHECK: 'buffer' <== Memory access at offset [[OFFSET]] is inside this variable
/external/fio/crc/
H A Dcrc64.c95 unsigned long long fio_crc64(const unsigned char *buffer, unsigned long length) argument
100 crc = crctab64[(crc ^ *(buffer++)) & 0xff] ^ (crc >> 8);
H A Dcrc7.c46 unsigned char fio_crc7(const unsigned char *buffer, unsigned int len) argument
51 crc = crc7_byte(crc, *buffer++);
/external/llvm/utils/
H A DDSAclean.py21 buffer = input.readline() variable
22 while buffer != '':
23 if re.compile("label(\s*)=(\s*)\"\s%tmp(.\w*)*(\s*)\"").search(buffer):
25 buffer = input.readline() variable
28 output.write(buffer)
30 buffer = input.readline() variable
/external/nanopb-c/tests/missing_fields/
H A Dmissing_fields.c10 uint8_t buffer[512]; local
16 pb_ostream_t stream = pb_ostream_from_buffer(buffer, sizeof(buffer));
30 pb_istream_t stream = pb_istream_from_buffer(buffer, size);
42 pb_istream_t stream = pb_istream_from_buffer(buffer, size);
/external/ppp/pppd/
H A Dmd4.h23 unsigned int buffer[4]; /* Holds 4-word result of MD computation */ member in struct:__anon28885
49 ** Prints message digest buffer MD as 32 hexadecimal digits.
50 ** Order is from low-order byte of buffer[0] to high-order byte
51 ** of buffer[3].
/external/qemu/distrib/sdl-1.2.15/src/video/ipod/
H A DSDL_ipodvideo.h33 char *buffer; member in struct:SDL_PrivateVideoData
/external/skia/src/ports/
H A DSkDebug_win.cpp20 char buffer[kBufferSize + 1]; local
31 vsnprintf(buffer, kBufferSize, format, args);
34 OutputDebugStringA(buffer);
/external/skia/tests/
H A DDashPathEffectTest.cpp18 SkWriteBuffer buffer; local
19 buffer.writeFlattenable(dash);
20 REPORTER_ASSERT(r, buffer.bytesWritten() > 12); // We'd write 12 if broken, >=40 if not.
/external/srtp/include/
H A Dut_sim.h58 uint32_t buffer[UT_BUF]; member in struct:__anon31225
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dsha1_i.h15 unsigned char buffer[64]; member in struct:SHA1Context
21 void SHA1Transform(u32 state[5], const unsigned char buffer[64]);

Completed in 736 milliseconds

1234567891011>>