HomeSort by relevance Sort by last modified time
    Searched refs:sizeof (Results 1 - 25 of 100) sorted by null

1 2 3 4

  /external/e2fsprogs/config/
parse-types.sh 24 if (sizeof(__U8_TYPEDEF) != 1) {
25 printf("Sizeof(__U8__TYPEDEF) is %d should be 1\n",
26 sizeof(__U8_TYPEDEF));
33 if (sizeof(__S8_TYPEDEF) != 1) {
34 printf("Sizeof(_S8__TYPEDEF) is %d should be 1\n",
35 sizeof(__S8_TYPEDEF));
42 if (sizeof(__U16_TYPEDEF) != 2) {
43 printf("Sizeof(__U16__TYPEDEF) is %d should be 2\n",
44 sizeof(__U16_TYPEDEF));
51 if (sizeof(__S16_TYPEDEF) != 2)
    [all...]
  /external/webkit/WebKit/mac/Plugins/
WebNetscapeContainerCheckPrivate.mm 38 sizeof(WKNBrowserContainerCheckFuncs),
WebNetscapePluginPackage.mm 135 p += sizeof(SInt16);
313 bzero(&URLSpec, sizeof(URLSpec));
330 browserFuncs.size = 2 + 2 + sizeof(void *) * 40;
435 browserFuncs.size = sizeof(NPNetscapeFuncs);
548 browserFuncs.size = sizeof(NPNetscapeFuncs);
618 pluginFuncs.size = sizeof(NPPluginFuncs);
704 newGlue = (uint32 *)malloc(sizeof(temp));
710 MakeDataExecutable(newGlue, sizeof(temp));
721 newGlue = (FunctionPointer *)malloc(2 * sizeof(FunctionPointer));
  /build/tools/bin2asm/
data 38 amt = fread(buf, 1, sizeof(buf), stdin);
  /external/astl/include/
limits 149 static const int digits = static_cast<int>(sizeof(int) * CHAR_BIT);
165 static const int digits = static_cast<int>(sizeof(unsigned int) * CHAR_BIT);
213 static const int digits = static_cast<int>(sizeof(long long) * CHAR_BIT);
229 static const int digits = static_cast<int>(sizeof(unsigned long long) * CHAR_BIT);
vector 107 size_type max_size() const { return (~size_type(0)) / sizeof(value_type); }
262 mBegin = static_cast<pointer>(malloc(num * sizeof(value_type)));
295 realloc(mBegin, new_size * sizeof(value_type)));
305 malloc(new_size * sizeof(value_type)));
454 mBegin = static_cast<pointer>(malloc(num * sizeof(value_type)));
  /external/qemu/distrib/sdl-1.2.12/src/video/quartz/
SDL_QuartzYUV.m 80 sizeof (PlanarPixmapInfoYUV420),
131 yuv_idh = (ImageDescriptionHandle) NewHandleClear (sizeof(ImageDescription));
137 yuv_matrix = (MatrixRecordPtr) SDL_malloc (sizeof(MatrixRecord));
201 (**yuv_idh).idSize = sizeof(ImageDescription);
237 overlay = (SDL_Overlay*) SDL_malloc (sizeof(*overlay));
270 pixels = (Uint8**) SDL_malloc (sizeof(*pixels) * 3);
271 pitches = (Uint16*) SDL_malloc (sizeof(*pitches) * 3);
280 SDL_malloc (sizeof(PlanarPixmapInfoYUV420) +
288 offset = sizeof(PlanarPixmapInfoYUV420);
315 overlay->hwfuncs = SDL_malloc (sizeof(*overlay->hwfuncs))
    [all...]
  /external/webkit/WebKit/mac/Carbon/
HIWebView.mm 240 HIWebView* view = (HIWebView*)malloc( sizeof( HIWebView ) );
546 GetEventParameter(inEvent, kEventParamMouseLocation, typeHIPoint, NULL, sizeof(point), NULL, &point);
608 OSStatus err = GetWindowProperty(newWindow, NSAppKitPropertyCreator, NSCarbonWindowPropertyTag, sizeof(NSWindow *), NULL, &view->fKitWindow);
624 SetWindowProperty(newWindow, NSAppKitPropertyCreator, NSCarbonWindowPropertyTag, sizeof(NSWindow *), &view->fKitWindow);
670 err = GetWindowProperty( window, NSAppKitPropertyCreator, NSCarbonWindowPropertyTag, sizeof(NSWindow *), NULL, &kitWindow);
692 err = GetWindowProperty( window, NSAppKitPropertyCreator, NSCarbonWindowPropertyTag, sizeof(NSWindow *), NULL, &kitWindow);
714 err = GetWindowProperty( window, NSAppKitPropertyCreator, NSCarbonWindowPropertyTag, sizeof(NSWindow *), NULL, &kitWindow);
731 GetEventParameter(inEvent, kEventParamMouseLocation, typeQDPoint, NULL, sizeof(Point), NULL, &where);
741 SetEventParameter(inEvent, kEventParamWindowRef, typeWindowRef, sizeof(WindowRef), &window);
742 SetEventParameter(inEvent, kEventParamWindowMouseLocation, typeQDPoint, sizeof(Point), &where)
    [all...]
  /system/core/sh/
nodes.c.pat 99 funcblocksize += SHELL_ALIGN(sizeof(struct nodelist));
129 SHELL_ALIGN(sizeof(struct nodelist));
mknodes.sh 139 echo " SHELL_ALIGN(sizeof (struct $struct)),"
  /external/bluetooth/glib/
acglib.m4 62 # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
64 _AC_COMPUTE_INT([(long) (sizeof ($2))],
67 [AC_MSG_ERROR([cannot compute sizeof ($2), 77])])
70 [The size of $3, as computed by sizeof.])
  /external/zlib/contrib/delphi/
ZLib.pas 292 FillChar(strm, sizeof(strm), 0);
302 CCheck(deflateInit_(strm, Z_BEST_COMPRESSION, zlib_version, sizeof(strm)));
331 FillChar(strm, sizeof(strm), 0);
345 DCheck(inflateInit_(strm, zlib_version, sizeof(strm)));
371 FillChar(strm, sizeof(strm), 0);
378 DCheck(inflateInit_(strm, zlib_version, sizeof(strm)));
414 FZRec.avail_out := sizeof(FBuffer);
415 CCheck(deflateInit_(FZRec, Levels[CompressionLevel], zlib_version, sizeof(FZRec)));
427 FStrm.WriteBuffer(FBuffer, sizeof(FBuffer));
429 FZRec.avail_out := sizeof(FBuffer)
    [all...]
  /cts/apps/CtsVerifier/arduino-helper/
arduino-helper.pde 138 memset(&PONG_STATE, 0, sizeof(PONG_STATE));
205 memset(&WALL_TIME, 0, sizeof(WALL_TIME));
206 memset(&CURRENT_MESSAGE, 0, sizeof(CURRENT_MESSAGE));
207 memset(&MESSAGE_BUFFER, 0, sizeof(MESSAGE_BUFFER));
208 memset(&PONG_STATE, 0, sizeof(PONG_STATE));
267 memset(&MESSAGE_BUFFER, 0, sizeof(MESSAGE_BUFFER));
  /external/webkit/WebCore/platform/graphics/mac/
SimpleFontDataMac.mm 77 ByteCount size = sizeof(ATSUFontID);
289 ASSERT(numGlyphs == sizeof(weights) / sizeof(int));
423 for (unsigned i = 0; i < sizeof(tables) / sizeof(tables[0]); ++i) {
470 sizeof(keysWithKerningDisabled) / sizeof(*keysWithKerningDisabled),
477 sizeof(keysWithKerningEnabled) / sizeof(*keysWithKerningEnabled),
  /external/webkit/WebKit/mac/Misc/
WebKitSystemBits.m 74 len = sizeof(numCPUs);
  /external/webkit/WebKitExamplePlugins/NetscapeCoreAnimationPlugin/
main.m 86 pluginFuncs->size = sizeof(pluginFuncs);
112 PluginObject *obj = (PluginObject *)malloc(sizeof(PluginObject));
113 bzero(obj, sizeof(PluginObject));
  /external/qemu/distrib/sdl-1.2.12/src/main/macosx/
SDLMain.m 272 newargv = (char **) realloc(gArgv, sizeof (char *) * (gArgc + 2));
322 buffer = NSAllocateMemoryPages(bufferSize*sizeof(unichar));
362 gArgv = (char **) SDL_malloc(sizeof (char *) * 2);
370 gArgv = (char **) SDL_malloc(sizeof (char *) * (argc+1));
  /external/qemu/distrib/zlib-1.2.3/
configure 234 vsnprintf(buf, sizeof(buf), fmt, ap);
259 n = vsnprintf(buf, sizeof(buf), fmt, ap);
328 snprintf(buf, sizeof(buf), "%s", "foo");
348 return snprintf(buf, sizeof(buf), "%s", "foo");
  /external/webkit/WebCore/bridge/jni/
jni_objc.mm 80 bzero (&result, sizeof(jvalue));
  /external/webkit/WebKitTools/DumpRenderTree/mac/
AppleScriptController.m 70 if ([[aeDesc data] length] == sizeof(LongDateTime)) {
  /external/netcat/
stupidh 438 sizeof (short), sizeof (int), sizeof (long));
  /external/zlib/contrib/pascal/
zlibpas.pas 189 Result := deflateInit_(strm, level, ZLIB_VERSION, sizeof(z_stream));
196 ZLIB_VERSION, sizeof(z_stream));
201 Result := inflateInit_(strm, ZLIB_VERSION, sizeof(z_stream));
206 Result := inflateInit2_(strm, windowBits, ZLIB_VERSION, sizeof(z_stream));
213 ZLIB_VERSION, sizeof(z_stream));
  /external/webkit/WebKitExamplePlugins/NetscapeCocoaPlugin/
main.m 89 pluginFuncs->size = sizeof(pluginFuncs);
115 PluginObject *obj = (PluginObject *)malloc(sizeof(PluginObject));
116 bzero(obj, sizeof(PluginObject));
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_osx.m 172 os_memset(results, 0, num * sizeof(struct wpa_scan_result));
317 os_memset(capa, 0, sizeof(*capa));
344 drv = os_zalloc(sizeof(*drv));
  /external/sqlite/dist/
sqlite3.c.orig     [all...]

Completed in 176 milliseconds

1 2 3 4