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

1 2 3 4 5 6

  /external/webkit/WebCore/platform/network/cf/
LoaderRunLoopCF.h 30 #error This code is not needed on platforms other than Windows, because main thread's CFRunLoop can be used.
  /dalvik/tests/062-character-encodings/src/
Main.java 18 Set<String> needed = new HashSet<String>(standardCharsets); local
21 needed.remove(canonicalName);
23 System.out.println("Missing: " + needed);
  /external/srec/shared/src/
LStringImpl.c 56 size_t needed; local
58 needed = LSTRLEN(impl->value) + LSTRLEN(value) + 1;
60 if (needed > impl->size)
62 LCHAR* temp = REALLOC(impl->value, sizeof(LCHAR) * (needed + (impl->size / 2)));
65 impl->size = sizeof(LCHAR) * (needed + (impl->size / 2));
  /bionic/libc/kernel/tools/
kernel.py 145 """return the set of all needed kernel headers"""
211 self.needed = {}
239 needed = {}
242 if not path in needed:
243 needed[path] = set()
254 if not path in needed:
255 needed[path] = set()
258 needed[path].add(user)
261 for header in needed.keys():
262 users = needed[header
    [all...]
  /external/icu4c/samples/numfmt/
capi.c 25 int32_t needed; local
58 in the US locale. The return value is the buffer size needed.
64 needed = unum_formatDouble(fmt, a, buf, 256, NULL, &status);
  /external/bluetooth/glib/gmodule/
gmodule-win32.c 170 DWORD needed; local
185 sizeof (HMODULE), &needed))
188 size = needed + 10 * sizeof (HMODULE);
192 size, &needed)
193 || needed > size)
200 for (i = 0; i < needed / sizeof (HMODULE); i++)
  /external/webkit/JavaScriptCore/wtf/unicode/qt4/
UnicodeQt4.h 41 signed short digitValue : 6; /* 5 needed */
208 int needed = 0; local
225 needed += qstring.length() - i;
240 needed += e - s;
241 *error = (needed != 0);
244 return rindex + needed;
266 int needed = 0; local
283 needed += qstring.length() - i;
298 needed += e - s;
299 *error = (needed != 0)
    [all...]
  /frameworks/base/opengl/libs/
Android.mk 20 # needed on sim build because of weird logging issues
79 # needed on sim build because of weird logging issues
115 # needed on sim build because of weird logging issues
  /external/netcat/data/
showmount.d 58 000 # extra auth trash? probably not needed
  /frameworks/base/media/libstagefright/codecs/aacenc/SampleCode/
ms.mk 17 # please list all objects needed by your target here
  /frameworks/base/media/libstagefright/codecs/amrwbenc/SampleCode/
ms.mk 16 # please list all objects needed by your target here
  /system/wlan/ti/sta_dk_4_0_4_32/CUDK/UtilityAdapter/
Android.mk 11 CLI_DEBUGFLAGS = -O0 -g -fno-builtin -DDEBUG -D TI_DBG # "-O" is needed to expand inlines
  /hardware/broadcom/wlan/bcm4329/src/include/
dhdioctl.h 49 uint needed; /* bytes needed (optional) */ member in struct:dhd_ioctl
  /external/qemu/distrib/sdl-1.2.12/src/audio/
SDL_audio.c 144 if ( audio->convert.needed ) {
181 if ( audio->convert.needed ) {
203 if ( audio->convert.needed ) {
494 audio->convert.needed = 0;
534 if ( audio->convert.needed ) {
637 if ( audio->convert.needed ) {
  /hardware/ti/wlan/wl1271/CUDK/tiwlan_loader/
Android.mk 12 DEBUGFLAGS = -O2 -g -DDEBUG -DTI_DBG -fno-builtin # "-O" is needed to expand inlines
  /system/wlan/ti/wilink_6_1/CUDK/tiwlan_loader/
Android.mk 12 DEBUGFLAGS = -O2 -g -DDEBUG -DTI_DBG -fno-builtin # "-O" is needed to expand inlines
  /dalvik/vm/alloc/
DdmHeap.c 227 size_t needed = (((chunklen/ALLOCATION_UNIT_SIZE + 255) / 256) * 2); local
229 if (bytesLeft < needed) {
234 if (bytesLeft < needed) {
236 chunklen, needed);
  /external/bluetooth/glib/glib/gnulib/
vasnprintf.c 178 /* Output prefixes spaces if needed */
217 /* Output prefixed zero padding if needed */
235 /* Output trailing spaces if needed */
298 #define ENSURE_ALLOCATION(needed) \
299 if ((needed) > allocated) \
304 if ((needed) > allocated) \
305 allocated = (needed); \
  /external/e2fsprogs/intl/
vasnprintf.c 182 /* Ensures that allocated >= needed. Aborts through a jump to
183 out_of_memory if needed is SIZE_MAX or otherwise too big. */
184 #define ENSURE_ALLOCATION(needed) \
185 if ((needed) > allocated) \
191 if ((needed) > allocated) \
192 allocated = (needed); \
  /external/qemu/distrib/sdl-1.2.12/include/
SDL_audio.h 82 int needed; /* Set to 1 if conversion possible */ member in struct:SDL_AudioCVT
203 * and rate, and initializes the 'cvt' structure with information needed
  /prebuilt/darwin-x86/sdl/include/SDL/
SDL_audio.h 82 int needed; /* Set to 1 if conversion possible */ member in struct:SDL_AudioCVT
203 * and rate, and initializes the 'cvt' structure with information needed
  /prebuilt/linux-x86/sdl/include/SDL/
SDL_audio.h 82 int needed; /* Set to 1 if conversion possible */ member in struct:SDL_AudioCVT
203 * and rate, and initializes the 'cvt' structure with information needed
  /prebuilt/windows/sdl/host/include/SDL/
SDL_audio.h 88 int needed; /* Set to 1 if conversion possible */ member in struct:SDL_AudioCVT
209 * and rate, and initializes the 'cvt' structure with information needed
  /prebuilt/windows/sdl/include/SDL/
SDL_audio.h 82 int needed; /* Set to 1 if conversion possible */ member in struct:SDL_AudioCVT
203 * and rate, and initializes the 'cvt' structure with information needed
  /dalvik/vm/mterp/x86/
OP_IGET.S 26 movl rIBASE,OUT_ARG1(%esp) # needed by dvmResolveInstField

Completed in 980 milliseconds

1 2 3 4 5 6