Searched defs:op (Results 176 - 200 of 480) sorted by relevance

1234567891011>>

/external/openssl/crypto/dsa/
H A Ddsa_ameth.c545 static int dsa_pkey_ctrl(EVP_PKEY *pkey, int op, long arg1, void *arg2) argument
547 switch (op)
/external/openssl/crypto/ec/
H A Dec_ameth.c577 static int ec_pkey_ctrl(EVP_PKEY *pkey, int op, long arg1, void *arg2) argument
579 switch (op)
/external/protobuf/src/google/protobuf/
H A Dwire_format.cc1047 Operation op) {
1050 switch (op) {
1045 VerifyUTF8StringFallback(const char* data, int size, Operation op) argument
/external/qemu/elff/
H A Ddwarf_cu.cc483 const Elf_Byte op = *go; local
486 if (op == 0) {
544 } else if (op < stmtl_header_.opcode_base) {
546 switch (op) {
669 uleb < stmtl_header_.standard_opcode_lengths[op - 1]; uleb++) {
679 const Elf_Word adjusted = op - stmtl_header_.opcode_base;
/external/skia/src/animator/
H A DSkAnimatorScript2.cpp135 SkOperand2* op = params->begin(); local
136 const char* script = op->fString->c_str();
/external/skia/src/utils/
H A DSkNWayCanvas.cpp125 bool SkNWayCanvas::clipRect(const SkRect& rect, SkRegion::Op op) { argument
128 iter->clipRect(rect, op);
130 return this->INHERITED::clipRect(rect, op);
133 bool SkNWayCanvas::clipPath(const SkPath& path, SkRegion::Op op) { argument
136 iter->clipPath(path, op);
138 return this->INHERITED::clipPath(path, op);
141 bool SkNWayCanvas::clipRegion(const SkRegion& deviceRgn, SkRegion::Op op) { argument
144 iter->clipRegion(deviceRgn, op);
146 return this->INHERITED::clipRegion(deviceRgn, op);
H A DSkProxyCanvas.cpp54 bool SkProxyCanvas::clipRect(const SkRect& rect, SkRegion::Op op) { argument
55 return fProxy->clipRect(rect, op);
58 bool SkProxyCanvas::clipPath(const SkPath& path, SkRegion::Op op) { argument
59 return fProxy->clipPath(path, op);
62 bool SkProxyCanvas::clipRegion(const SkRegion& deviceRgn, SkRegion::Op op) { argument
63 return fProxy->clipRegion(deviceRgn, op);
/external/srec/srec/include/
H A Dsample.h40 /* The known device (op) types here
115 int op; /* read or write */ member in struct:__anon9877
131 int op; /* read (i/p) or write (o/p) */ member in struct:__anon9878
/external/svox/pico/lib/
H A Dpicoos.h469 picoos_compare_op_t op; member in struct:picoos_file_header_field
482 pico_status_t picoos_setHeaderField(picoos_FileHeader header, picoos_uint8 index, picoos_char * key, picoos_char * value, picoos_compare_op_t op);
485 pico_status_t picoos_getHeaderField(picoos_FileHeader header, picoos_uint8 index, picoos_field_string_t key, picoos_field_string_t value, picoos_compare_op_t * op);
/external/tcpdump/
H A Dprint-atalk.c59 u_int16_t op; member in struct:aarp
207 switch (EXTRACT_16BITS(&ap->op)) {
224 (void)printf("len %u op %u htype %u ptype %#x halen %u palen %u",
225 length, EXTRACT_16BITS(&ap->op), EXTRACT_16BITS(&ap->htype),
/external/v8/src/arm/
H A Dcode-stubs-arm.h76 TypeRecordingBinaryOpStub(Token::Value op, OverwriteMode mode) argument
77 : op_(op),
117 PrintF("TypeRecordingBinaryOpStub %d (op %s), "
/external/v8/src/
H A Dic.h617 CompareIC(Isolate* isolate, Token::Value op) argument
618 : IC(EXTRA_CALL_FRAME, isolate), op_(op) { }
624 static Handle<Code> GetUninitialized(Token::Value op);
627 static Condition ComputeCondition(Token::Value op);
/external/valgrind/main/none/tests/amd64/
H A Damd64locked.c654 ULong n, bitoff, op; local
668 op = random() % 4;
670 switch (op) {
704 op = random() % 4;
706 switch (op) {
740 op = random() % 4;
742 switch (op) {
/external/webkit/Source/JavaScriptCore/dfg/
H A DDFGNode.h174 Node(NodeType op, ExceptionInfo exceptionInfo, NodeIndex child1 = NoNode, NodeIndex child2 = NoNode, NodeIndex child3 = NoNode) argument
175 : op(op)
186 Node(NodeType op, ExceptionInfo exceptionInfo, OpInfo imm, NodeIndex child1 = NoNode, NodeIndex child2 = NoNode, NodeIndex child3 = NoNode) argument
187 : op(op)
199 Node(NodeType op, ExceptionInfo exceptionInfo, OpInfo imm1, OpInfo imm2, NodeIndex child1 = NoNode, NodeIndex child2 = NoNode, NodeIndex child3 = NoNode) argument
200 : op(op)
214 return op
331 NodeType op; member in struct:JSC::DFG::Node
[all...]
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DIntermediate.cpp25 const char* getOperatorString(TOperator op) { argument
26 switch (op) {
146 TIntermTyped* TIntermediate::addBinaryMath(TOperator op, TIntermTyped* left, TIntermTyped* right, TSourceLoc line, TSymbolTable& symbolTable) argument
148 switch (op) {
185 TIntermTyped* child = addConversion(op, left->getType(), right);
189 child = addConversion(op, right->getType(), left);
201 TIntermBinary* node = new TIntermBinary(op);
232 TIntermTyped* TIntermediate::addAssign(TOperator op, TIntermTyped* left, TIntermTyped* right, TSourceLoc line) argument
238 TIntermBinary* node = new TIntermBinary(op);
243 TIntermTyped* child = addConversion(op, lef
262 addIndex(TOperator op, TIntermTyped* base, TIntermTyped* index, TSourceLoc line) argument
281 addUnaryMath(TOperator op, TIntermNode* childNode, TSourceLoc line, TSymbolTable& symbolTable) argument
378 setAggregateOperator(TIntermNode* node, TOperator op, TSourceLoc line) argument
417 addConversion(TOperator op, const TType& type, TIntermTyped* node) argument
1083 fold(TOperator op, TIntermTyped* constantNode, TInfoSink& infoSink) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/android/
H A DImageBufferAndroid.cpp103 void ImageBuffer::draw(GraphicsContext* context, ColorSpace styleColorSpace, const FloatRect& destRect, const FloatRect& srcRect, CompositeOperator op, bool useLowQualityScale) argument
106 context->drawImage(imageCopy.get(), styleColorSpace, destRect, srcRect, op, useLowQualityScale);
109 void ImageBuffer::drawPattern(GraphicsContext* context, const FloatRect& srcRect, const AffineTransform& patternTransform, const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator op, const FloatRect& destRect) argument
112 imageCopy->drawPattern(context, srcRect, patternTransform, phase, styleColorSpace, op, destRect);
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DImageBufferCairo.cpp123 CompositeOperator op , bool useLowQualityScale)
127 context->drawImage(image.get(), styleColorSpace, destRect, srcRect, op, useLowQualityScale);
131 const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator op, const FloatRect& destRect)
135 image->drawPattern(context, srcRect, patternTransform, phase, styleColorSpace, op, destRect);
130 drawPattern(GraphicsContext* context, const FloatRect& srcRect, const AffineTransform& patternTransform, const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator op, const FloatRect& destRect) argument
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DImageBufferCG.cpp201 CompositeOperator op, bool useLowQualityScale)
207 destContext->drawImage(copy.get(), ColorSpaceDeviceRGB, destRect, srcRect, op, useLowQualityScale);
210 destContext->drawImage(imageForRendering.get(), styleColorSpace, destRect, srcRect, op, useLowQualityScale);
215 destContext->drawImage(copy.get(), colorSpace, destRect, srcRect, op, useLowQualityScale);
220 const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator op, const FloatRect& destRect)
226 copy->drawPattern(destContext, srcRect, patternTransform, phase, styleColorSpace, op, destRect);
229 imageForRendering->drawPattern(destContext, srcRect, patternTransform, phase, styleColorSpace, op, destRect);
233 copy->drawPattern(destContext, srcRect, patternTransform, phase, styleColorSpace, op, destRect);
200 draw(GraphicsContext* destContext, ColorSpace styleColorSpace, const FloatRect& destRect, const FloatRect& srcRect, CompositeOperator op, bool useLowQualityScale) argument
219 drawPattern(GraphicsContext* destContext, const FloatRect& srcRect, const AffineTransform& patternTransform, const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator op, const FloatRect& destRect) argument
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DImageBufferQt.cpp136 CompositeOperator op, bool useLowQualityScale)
141 destContext->drawImage(copy.get(), ColorSpaceDeviceRGB, destRect, srcRect, op, useLowQualityScale);
143 destContext->drawImage(m_data.m_image.get(), styleColorSpace, destRect, srcRect, op, useLowQualityScale);
147 const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator op, const FloatRect& destRect)
152 copy->drawPattern(destContext, srcRect, patternTransform, phase, styleColorSpace, op, destRect);
154 m_data.m_image->drawPattern(destContext, srcRect, patternTransform, phase, styleColorSpace, op, destRect);
135 draw(GraphicsContext* destContext, ColorSpace styleColorSpace, const FloatRect& destRect, const FloatRect& srcRect, CompositeOperator op, bool useLowQualityScale) argument
146 drawPattern(GraphicsContext* destContext, const FloatRect& srcRect, const AffineTransform& patternTransform, const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator op, const FloatRect& destRect) argument
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DImageBufferSkia.cpp118 CompositeOperator op, bool useLowQualityScale)
130 context->platformContext()->gpuCanvas()->drawTexturedRect(sourceTexture, m_size, srcRectFlipped, destRectNormalized, styleColorSpace, op);
137 context->drawImage(image.get(), styleColorSpace, destRect, srcRect, op, useLowQualityScale);
141 const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator op, const FloatRect& destRect)
144 image->drawPattern(context, srcRect, patternTransform, phase, styleColorSpace, op, destRect);
117 draw(GraphicsContext* context, ColorSpace styleColorSpace, const FloatRect& destRect, const FloatRect& srcRect, CompositeOperator op, bool useLowQualityScale) argument
140 drawPattern(GraphicsContext* context, const FloatRect& srcRect, const AffineTransform& patternTransform, const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator op, const FloatRect& destRect) argument
/external/wpa_supplicant/
H A Dctrl_iface_dbus_handlers.c807 const char *op; local
813 DBUS_TYPE_OBJECT_PATH, &op,
820 iface = wpas_dbus_decompose_object_path(op, &net_id, NULL);
1051 const char *op; local
1070 DBUS_TYPE_OBJECT_PATH, &op,
1078 iface_obj_path = wpas_dbus_decompose_object_path(op,
H A Ddriver_madwifi.c50 set80211priv(struct wpa_driver_madwifi_data *drv, int op, void *data, int len, argument
72 if (ioctl(drv->sock, op, &iwr) < 0) {
131 int idx = op - first;
132 if (first <= op && op <= last &&
145 set80211param(struct wpa_driver_madwifi_data *drv, int op, int arg, argument
152 iwr.u.mode = op;
/external/wpa_supplicant_6/wpa_supplicant/
H A Dctrl_iface_dbus_handlers.c865 const char *op; local
871 DBUS_TYPE_OBJECT_PATH, &op,
878 iface = wpas_dbus_decompose_object_path(op, &net_id, NULL);
1109 const char *op; local
1128 DBUS_TYPE_OBJECT_PATH, &op,
1136 iface_obj_path = wpas_dbus_decompose_object_path(op,
/external/wpa_supplicant_6/wpa_supplicant/src/drivers/
H A Ddriver_madwifi.c59 set80211priv(struct wpa_driver_madwifi_data *drv, int op, void *data, int len, argument
67 op != IEEE80211_IOCTL_SET_APPIEBUF) {
82 if (ioctl(drv->sock, op, &iwr) < 0) {
141 int idx = op - first;
142 if (first <= op && op <= last &&
155 set80211param(struct wpa_driver_madwifi_data *drv, int op, int arg, argument
162 iwr.u.mode = op;
H A Ddriver_roboswitch.c37 #define ROBO_MII_PAGE_ENABLE 0x01 /* MII page op code */
38 #define ROBO_MII_ADDR_WRITE 0x01 /* MII address write op code */
39 #define ROBO_MII_ADDR_READ 0x02 /* MII address read op code */
127 u8 page, u8 reg, u8 op)
135 wpa_driver_roboswitch_mdio_write(drv, ROBO_MII_ADDR, (reg << 8) | op);
126 wpa_driver_roboswitch_reg(struct wpa_driver_roboswitch_data *drv, u8 page, u8 reg, u8 op) argument

Completed in 408 milliseconds

1234567891011>>