Searched defs:target (Results 126 - 150 of 690) sorted by relevance

1234567891011>>

/external/iptables/extensions/
H A Dlibxt_TPROXY.c2 * shared library add-on to iptables to add TPROXY target support.
44 "TPROXY target options:\n"
50 static void tproxy_tg_print(const void *ip, const struct xt_entry_target *target, argument
53 const struct xt_tproxy_target_info *info = (const void *)target->data;
61 tproxy_tg_print4(const void *ip, const struct xt_entry_target *target, argument
65 (const void *)target->data;
74 tproxy_tg_print6(const void *ip, const struct xt_entry_target *target, argument
78 (const void *)target->data;
86 static void tproxy_tg_save(const void *ip, const struct xt_entry_target *target) argument
88 const struct xt_tproxy_target_info *info = (const void *)target
98 tproxy_tg_save4(const void *ip, const struct xt_entry_target *target) argument
110 tproxy_tg_save6(const void *ip, const struct xt_entry_target *target) argument
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DCodeAnalyzer.java104 int target = index + ci.s16bitAt(index + 1);
105 checkTarget(index, target, codeLength, stack, stackDepth);
108 int target, index2;
111 target = index + ci.s16bitAt(index + 1);
112 checkTarget(index, target, codeLength, stack, stackDepth);
115 target = index + ci.s32bitAt(index + 1);
116 checkTarget(index, target, codeLength, stack, stackDepth);
121 target = index + ci.s16bitAt(index + 1);
123 target = index + ci.s32bitAt(index + 1);
125 checkTarget(index, target, codeLengt
189 checkTarget(int opIndex, int target, int codeLength, int[] stack, int stackDepth) argument
[all...]
/external/jpeg/
H A Djutils.c107 #define FMEMZERO(target,size) MEMZERO(target,size)
111 #define FMEMZERO(target,size) _fmemset((void FAR *)(target), 0, (size_t)(size))
171 jzero_far (void FAR * target, size_t bytestozero) argument
176 FMEMZERO(target, bytestozero);
178 register char FAR * ptr = (char FAR *) target;
/external/oprofile/module/x86/
H A Dop_rtc.c60 unsigned long target; local
75 target = sysctl.ctr[0].count;
78 while (target > (1 << exp) + ((1 << exp) >> 1))
139 int target = sysctl.ctr[0].count; local
141 if (check_range(target, OP_MIN_RTC_COUNT, OP_MAX_RTC_COUNT,
/external/proguard/src/proguard/
H A DProGuard.java90 target();
215 * Sets that target versions of the program classes.
217 private void target() throws IOException method in class:ProGuard
221 System.out.println("Setting target versions...");
/external/protobuf/java/src/main/java/com/google/protobuf/micro/
H A DByteStringMicro.java123 * @param target buffer to copy into
124 * @param offset in the target buffer
126 public void copyTo(final byte[] target, final int offset) { argument
127 System.arraycopy(bytes, 0, target, offset, bytes.length);
133 * @param target buffer to copy into
135 * @param targetOffset offset within the target buffer
138 public void copyTo(final byte[] target, final int sourceOffset, argument
141 System.arraycopy(bytes, sourceOffset, target, targetOffset, size);
/external/protobuf/src/google/protobuf/stubs/
H A Dsubstitute.cc112 char* target = string_as_array(output) + original_size; local
117 memcpy(target, src->data(), src->size());
118 target += src->size();
121 *target++ = '$';
125 *target++ = format[i];
129 GOOGLE_DCHECK_EQ(target - output->data(), output->size());
/external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
H A DSDL_sysevents.cc160 void SDL_BWin::DispatchMessage(BMessage *msg, BHandler *target) argument
377 //BDirectWindow::DispatchMessage(msg, target);
380 BDirectWindow::DispatchMessage(msg, target);
/external/replicaisland/src/com/replica/replicaisland/
H A DInterpolator.java20 * Helper class for interpolating velocity over time given a target velocity and acceleration.
21 * The current velocity will be accelerated towards the target until the target is reached.
23 * the target velocity.
52 public void set(float current, float target, float acceleration) { argument
54 mTarget = target;
63 // point the acceleration at the target, or zero it if we are already
77 // check to see if we've passed our target velocity since the last time
78 // step. If so, clamp to the target
105 // in this system, acceleration always points toward target velocit
106 calculateAcceleration(float velocity, float acceleration, float target) argument
[all...]
H A DMotionBlurComponent.java59 public void setTarget(RenderComponent target) { argument
60 mBlurTarget = target;
H A DOrbitalMagnetComponent.java67 private void applyMagnetism(GameObject target, float centerX, float centerY, float timeDelta) { argument
69 final float targetX = target.getCenteredPositionX();
70 final float targetY = target.getCenteredPositionY();
84 final Vector2 targetVelocity = target.getVelocity();
85 GravityComponent gravity = target.findByClass(GravityComponent.class);
/external/skia/include/core/
H A DSkTSearch.h23 int SkTSearch(const T* base, int count, const T& target, size_t elemSize) argument
39 if (*elem < target)
46 if (*elem != target)
48 if (*elem < target)
56 int SkTSearch(const T* base, int count, const T& target, size_t elemSize, argument
73 if ((*compare)(*elem, target) < 0)
80 int pred = (*compare)(*elem, target);
90 int SkTSearch(const T** base, int count, const T* target, size_t elemSize, argument
107 if ((*compare)(elem, target) < 0)
114 int pred = (*compare)(elem, target);
[all...]
/external/skia/src/animator/
H A DSkAnimateBase.h62 SkString field; // temporary; once target is known, this is reset
67 SkString target; // temporary; once target is known, this is reset member in class:SkAnimateBase
H A DSkDisplayEvent.h60 SkString target; member in class:SkDisplayEvent
H A DSkDisplayMath.cpp150 void SkDisplayMath::executeFunction(SkDisplayable* target, int index, argument
155 SkASSERT(target == this);
H A DSkGetCondensedInfo.cpp30 static int _searchByName(const unsigned char* lengths, int count, const char* strings, const char target[]) { argument
35 if (strcmp(&strings[lengths[mid << 2]], target) < 0)
40 if (strcmp(&strings[lengths[hi << 2]], target) != 0)
/external/skia/src/views/
H A DSkViewInflate.cpp31 const char* target; local
33 if (!strcmp(name, "listenTo") && (target = dom.findAttr(child, "target")) != NULL)
34 this->addIDStr(&fListenTo, parent, target);
36 if (!strcmp(name, "broadcastTo") && (target = dom.findAttr(child, "target")) != NULL)
37 this->addIDStr(&fBroadcastTo, parent, target);
71 SkView* target; local
76 if (fIDs.find(iter->fStr, &target))
77 target
[all...]
/external/webkit/Source/JavaScriptCore/icu/unicode/
H A Ducnv_err.h191 char *target; /**< Pointer to the target buffer. @stable ICU 2.0 */ member in struct:__anon11601
192 const char *targetLimit; /**< Pointer to the limit (end + 1) of target buffer. @stable ICU 2.0 */
207 UChar *target; /**< Pointer to the target buffer. @stable ICU 2.0 */ member in struct:__anon11602
208 const UChar *targetLimit; /**< Pointer to the limit (end + 1) of target buffer. @stable ICU 2.0 */
/external/webkit/Source/JavaScriptCore/wtf/
H A DStringExtras.h105 inline char* strnstr(const char* buffer, const char* target, size_t bufferLength) argument
107 size_t targetLength = strlen(target);
111 if (*start == *target && strncmp(start + 1, target + 1, targetLength - 1) == 0)
/external/webkit/Source/JavaScriptGlue/icu/unicode/
H A Ducnv_err.h191 char *target; /**< Pointer to the target buffer. @stable ICU 2.0 */ member in struct:__anon11678
192 const char *targetLimit; /**< Pointer to the limit (end + 1) of target buffer. @stable ICU 2.0 */
207 UChar *target; /**< Pointer to the target buffer. @stable ICU 2.0 */ member in struct:__anon11679
208 const UChar *targetLimit; /**< Pointer to the limit (end + 1) of target buffer. @stable ICU 2.0 */
/external/webkit/Source/WebCore/bindings/generic/
H A DBindingSecurity.h52 // Check if the active execution context can access the target frame.
57 static bool checkNodeSecurity(State<Binding>*, Node* target);
69 // Check if the current DOMWindow's security context can access the target
72 static bool canAccessWindow(State<Binding>*, DOMWindow* target);
87 Frame* target,
91 if (!target)
94 if (!canAccessWindow(state, getDOMWindow(target))) {
96 state->immediatelyReportUnsafeAccessTo(target);
108 Frame* target = getFrame(node);
110 if (!target)
86 canAccessFrame(State<Binding>* state, Frame* target, bool reportError) argument
[all...]
/external/webkit/Source/WebCore/bindings/gobject/
H A DGObjectEventListener.h36 static bool addEventListener(GObject* object, EventTarget* target, const char* domEventName, GCallback handler, bool useCapture, void* userData) argument
38 RefPtr<GObjectEventListener> listener(adoptRef(new GObjectEventListener(object, target, domEventName, handler, useCapture, userData)));
39 return target->addEventListener(domEventName, listener.release(), useCapture);
42 static bool removeEventListener(GObject* object, EventTarget* target, const char* domEventName, GCallback handler, bool useCapture) argument
44 GObjectEventListener key(object, target, domEventName, handler, useCapture, 0);
45 return target->removeEventListener(domEventName, &key, useCapture);
/external/webkit/Source/WebCore/dom/
H A DEventQueue.cpp74 ASSERT(event->target());
82 void EventQueue::enqueueOrDispatchScrollEvent(PassRefPtr<Node> target, ScrollEventTargetType targetType) argument
88 if (shouldDispatchScrollEventSynchronously(target->document())) {
89 target->dispatchEvent(scrollEvent.release());
93 if (!m_nodesWithQueuedScrollEvents.add(target.get()).second)
96 scrollEvent->setTarget(target);
141 EventTarget* eventTarget = event->target();
H A DProcessingInstruction.h36 static PassRefPtr<ProcessingInstruction> create(Document*, const String& target, const String& data);
39 const String& target() const { return m_target; } function in class:WebCore::ProcessingInstruction
57 ProcessingInstruction(Document*, const String& target, const String& data);
H A DTouch.h41 static PassRefPtr<Touch> create(Frame* frame, EventTarget* target, argument
44 return adoptRef(new Touch(frame, target, identifier, screenX,
48 EventTarget* target() const { return m_target.get(); } function in class:WebCore::Touch
58 Touch(Frame* frame, EventTarget* target, unsigned identifier,

Completed in 889 milliseconds

1234567891011>>