HomeSort by relevance Sort by last modified time
    Searched full:bufsize (Results 126 - 150 of 815) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/openssl/crypto/rc2/
rc2speed.c 113 #define BUFSIZE ((long)1024)
177 static unsigned char buf[BUFSIZE];
209 cc=count*8/BUFSIZE+1;
255 BUFSIZE);
259 BUFSIZE);
263 RC2_cbc_encrypt(buf,buf,BUFSIZE,&sch,
267 count,BUFSIZE,d);
268 c=((double)COUNT(cc)*BUFSIZE)/d;
  /external/skia/tests/
Reader32Test.cpp 46 const size_t bufsize = sizeof(data) > sizeof(data2) ? local
48 char buffer[bufsize];
  /sdk/emulator/opengl/host/include/libOpenglRender/
IOStream.h 27 IOStream(size_t bufSize) {
29 m_bufsize = bufSize;
  /external/chromium_org/third_party/angle/extensions/
EXT_robustness.txt 100 enum format, enum type, sizei bufSize,
103 void GetnUniformfvEXT(uint program, int location, sizei bufSize,
105 void GetnUniformivEXT(uint program, int location, sizei bufSize,
204 enum format, enum type, sizei bufSize,
210 not write more than <bufSize> bytes into <data>. If the buffer size
211 required to fill all the requested data is greater than <bufSize> an
227 void GetnUniformfvEXT(uint program, int location, sizei bufSize,
230 void GetnUniformivEXT(uint program, int location, sizei bufSize,
236 <bufSize> bytes are written into <params>. If the buffer size
237 required to fill all the requested data is greater than <bufSize> a
    [all...]
  /external/e2fsprogs/lib/ext2fs/
inode.c 405 struct ext2_inode *inode, int bufsize)
479 memset(inode, 0, bufsize);
483 0, bufsize);
492 memset(inode, 0, bufsize);
496 0, bufsize);
498 memcpy(inode, scan->ptr, bufsize);
523 struct ext2_inode * inode, int bufsize)
548 if (bufsize == sizeof(struct ext2_inode)) {
580 if (bufsize < length)
581 length = bufsize;
609 0, bufsize); local
    [all...]
swapfs.c 133 void ext2fs_swap_ext_attr(char *to, char *from, int bufsize, int has_header)
140 char *from_end = (char *)from_header + bufsize;
143 memcpy(to_header, from_header, bufsize);
164 int bufsize)
242 if (bufsize < (int) (sizeof(struct ext2_inode) + sizeof(__u16)))
257 if (bufsize < (int) i)
276 bufsize - sizeof(struct ext2_inode) -
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
Win32PipeStream.cpp 34 Win32PipeStream::Win32PipeStream(size_t bufSize) :
35 SocketStream(bufSize),
40 Win32PipeStream::Win32PipeStream(HANDLE pipe, size_t bufSize) :
41 SocketStream(-1, bufSize),
  /device/generic/goldfish/opengl/system/renderControl_enc/
renderControl.in 6 GL_ENTRY(EGLint, rcGetConfigs, uint32_t bufSize, GLuint *buffer)
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
ARB_get_program_binary.xml 16 <param name="bufSize" type="GLsizei"/>
  /external/elfutils/libcpu/
i386_disasm.c 263 size_t bufsize; member in struct:output_data
289 if (unlikely (bufcnt == bufsize)) \
298 if (unlikely (bufcnt + _len > bufsize)) \
312 #define BUFSIZE 512
313 char initbuf[BUFSIZE];
316 size_t bufsize = BUFSIZE; local
324 .bufsize = bufsize,
436 buf = malloc (2 * bufsize);
    [all...]
  /external/hyphenation/
example.c 8 #define BUFSIZE 1000
64 char buf[BUFSIZE + 1];
69 char hword[BUFSIZE * 2];
122 while(fgets(buf,BUFSIZE,wtclst)) {
  /external/llvm/test/CodeGen/PowerPC/
cr_spilling.ll 6 define fastcc void @ParseContent(i8* %buf, i32 %bufsize) {
  /external/mesa3d/src/mapi/glapi/gen/
ARB_get_program_binary.xml 16 <param name="bufSize" type="GLsizei"/>
  /frameworks/av/media/libeffects/testlibs/
AudioFormatAdapter.h 44 // bufSize The maximum number of samples (single channel) to process on a
49 template<class T, size_t bufSize>
65 mMaxSamplesPerCall = bufSize / nChannels;
116 audio_sample_t mBuffer[bufSize];
  /packages/apps/Camera/src/com/android/camera/
MosaicFrameProcessor.java 89 public void initialize(int previewWidth, int previewHeight, int bufSize) {
92 mPreviewBufferSize = bufSize;
116 private void setupMosaicer(int previewWidth, int previewHeight, int bufSize) {
117 Log.v(TAG, "setupMosaicer w, h=" + previewWidth + ',' + previewHeight + ',' + bufSize);
  /packages/apps/Camera2/src/com/android/camera/
MosaicFrameProcessor.java 89 public void initialize(int previewWidth, int previewHeight, int bufSize) {
92 mPreviewBufferSize = bufSize;
117 private void setupMosaicer(int previewWidth, int previewHeight, int bufSize) {
118 Log.v(TAG, "setupMosaicer w, h=" + previewWidth + ',' + previewHeight + ',' + bufSize);
  /packages/apps/LegacyCamera/src/com/android/camera/panorama/
MosaicFrameProcessor.java 72 public MosaicFrameProcessor(int previewWidth, int previewHeight, int bufSize) {
76 mPreviewBufferSize = bufSize;
104 private void setupMosaicer(int previewWidth, int previewHeight, int bufSize) {
105 Log.v(TAG, "setupMosaicer w, h=" + previewWidth + ',' + previewHeight + ',' + bufSize);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
cfmfile.py 22 BUFSIZE = 0x80000
181 if l > BUFSIZE:
182 outfile.write(infile.read(BUFSIZE))
183 l = l - BUFSIZE
  /sdk/emulator/opengl/host/libs/libOpenglRender/
ReadBuffer.h 23 ReadBuffer(IOStream *stream, size_t bufSize);
  /sdk/emulator/opengl/host/libs/renderControl_dec/
renderControl.in 6 GL_ENTRY(EGLint, rcGetConfigs, uint32_t bufSize, GLuint *buffer)
  /sdk/emulator/opengl/shared/OpenglCodecCommon/
Win32PipeStream.cpp 34 Win32PipeStream::Win32PipeStream(size_t bufSize) :
35 SocketStream(bufSize),
40 Win32PipeStream::Win32PipeStream(HANDLE pipe, size_t bufSize) :
41 SocketStream(-1, bufSize),
  /sdk/emulator/opengl/tests/ut_renderer/
ReadBuffer.h 23 ReadBuffer(SocketStream *stream, size_t bufSize);
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prnetdb.h 94 ** PRIntn bufsize Number of bytes in 'buf'. A recommnded value to
107 const char *hostname, char *buf, PRIntn bufsize, PRHostEnt *hostentry);
123 ** PRIntn bufsize Number of bytes in 'buf'. A recommnded value to
147 PRIntn bufsize,
159 ** PRIntn bufsize Number of bytes in 'buf'. A recommnded value to
172 const PRNetAddr *hostaddr, char *buf, PRIntn bufsize, PRHostEnt *hostentry);
337 ** PRIntn bufsize Number of bytes in 'buf'. A recommnded value to
361 const char* protocolname, char* buffer, PRInt32 bufsize, PRProtoEnt* result);
373 ** PRIntn bufsize Number of bytes in 'buf'. A recommnded value to
386 PRInt32 protocolnumber, char* buffer, PRInt32 bufsize, PRProtoEnt* result)
    [all...]
  /frameworks/native/opengl/libs/GLES2/
gl2_api.in 163 void API_ENTRY(glGetActiveAttrib)(GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, GLint* size, GLenum* type, GLchar* name) {
164 CALL_GL_API(glGetActiveAttrib, program, index, bufsize, length, size, type, name);
166 void API_ENTRY(glGetActiveUniform)(GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, GLint* size, GLenum* type, GLchar* name) {
167 CALL_GL_API(glGetActiveUniform, program, index, bufsize, length, size, type, name);
196 void API_ENTRY(glGetProgramInfoLog)(GLuint program, GLsizei bufsize, GLsizei* length, GLchar* infolog) {
197 CALL_GL_API(glGetProgramInfoLog, program, bufsize, length, infolog);
205 void API_ENTRY(glGetShaderInfoLog)(GLuint shader, GLsizei bufsize, GLsizei* length, GLchar* infolog) {
206 CALL_GL_API(glGetShaderInfoLog, shader, bufsize, length, infolog);
211 void API_ENTRY(glGetShaderSource)(GLuint shader, GLsizei bufsize, GLsizei* length, GLchar* source) {
212 CALL_GL_API(glGetShaderSource, shader, bufsize, length, source)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
f_enum.c 102 int i,j,k,m,n,again,bufsize; local
109 bufsize=BIO_gets(bp,buf,size);
112 if (bufsize < 1) goto err_sl;
113 i=bufsize;
192 bufsize=BIO_gets(bp,buf,size);

Completed in 900 milliseconds

1 2 3 4 56 7 8 91011>>