HomeSort by relevance Sort by last modified time
    Searched refs:oper (Results 51 - 75 of 97) sorted by null

1 23 4

  /external/wpa_supplicant_8/src/rsn_supp/
wpa_i.h 326 static inline int wpa_sm_tdls_oper(struct wpa_sm *sm, int oper,
330 return sm->ctx->tdls_oper(sm->ctx->ctx, oper, peer);
wpa.h 63 int (*tdls_oper)(void *ctx, int oper, const u8 *peer);
  /external/mesa3d/src/compiler/glsl/
ast_array_index.cpp 33 if (((ast_expression*)array_dimension)->oper != ast_unsized_array_dim)
ast_function.cpp 645 if (array->oper == ast_array_index) {
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_sndlib.h 278 S_FM_OPER oper[4]; member in struct:s_fm_region_tag
  /external/wpa_supplicant_8/wpa_supplicant/
driver_i.h 556 enum tdls_oper oper, const u8 *peer)
560 return wpa_s->driver->tdls_oper(wpa_s->drv_priv, oper, peer);
640 enum wnm_oper oper, const u8 *peer,
645 return wpa_s->driver->wnm_oper(wpa_s->drv_priv, oper, peer, buf,
mesh_mpm.c 652 struct ieee80211_ht_operation *oper; local
686 oper = (struct ieee80211_ht_operation *) elems->ht_operation;
687 if (oper &&
688 !(oper->ht_param & HT_INFO_HT_PARAM_STA_CHNL_WIDTH) &&
    [all...]
wpas_glue.c 720 static int wpa_supplicant_tdls_oper(void *ctx, int oper, const u8 *peer)
723 return wpa_drv_tdls_oper(wpa_s, oper, peer);
    [all...]
  /external/skia/src/core/
SkRegion.cpp 413 return !Oper(rgn, *this, kDifference_Op, nullptr);
503 return Oper(*this, rgn, kIntersect_Op, nullptr);
856 RgnOper oper(SkMin32(a_top, b_top), dst, op);
901 oper.addSpan(top, gSentinel, gSentinel);
903 oper.addSpan(bot, run0, run1);
905 if (quickExit && !oper.isEmpty()) {
930 return oper.flush();
982 bool SkRegion::Oper(const SkRegion& rgnaOrig, const SkRegion& rgnbOrig, Op op,
1093 return SkRegion::Oper(rgna, rgnb, op, this);
    [all...]
  /external/skqp/src/core/
SkRegion.cpp 413 return !Oper(rgn, *this, kDifference_Op, nullptr);
503 return Oper(*this, rgn, kIntersect_Op, nullptr);
856 RgnOper oper(SkMin32(a_top, b_top), dst, op);
901 oper.addSpan(top, gSentinel, gSentinel);
903 oper.addSpan(bot, run0, run1);
905 if (quickExit && !oper.isEmpty()) {
930 return oper.flush();
982 bool SkRegion::Oper(const SkRegion& rgnaOrig, const SkRegion& rgnbOrig, Op op,
1093 return SkRegion::Oper(rgna, rgnb, op, this);
    [all...]
  /external/skia/tools/bookmaker/
includeParser.cpp 269 TextParser oper("", token.fStart, token.fContentEnd, 0);
270 const char* start = oper.strnstr("operator", token.fContentEnd);
272 oper.skipTo(start);
273 oper.skipToEndBracket('(');
276 if ('(' == oper.peek()) {
278 } else if (')' == oper.peek()) {
281 } while (!oper.eof() && oper.next() && parens > 0);
282 operatorName += string(start, oper.fChar - start);
    [all...]
  /external/skqp/tools/bookmaker/
includeParser.cpp 269 TextParser oper("", token.fStart, token.fContentEnd, 0);
270 const char* start = oper.strnstr("operator", token.fContentEnd);
272 oper.skipTo(start);
273 oper.skipToEndBracket('(');
276 if ('(' == oper.peek()) {
278 } else if (')' == oper.peek()) {
281 } while (!oper.eof() && oper.next() && parens > 0);
282 operatorName += string(start, oper.fChar - start);
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_stencil.c 122 * @param oper the stencil buffer operator
129 apply_stencil_op(const struct gl_context *ctx, GLenum oper, GLuint face,
138 switch (oper) {
  /external/tensorflow/tensorflow/c/
c_api_function.cc 394 const Node& node = inputs[i].oper->node;
430 const Node& node = outputs[i].oper->node;
  /external/fonttools/Lib/fontTools/misc/
psCharStrings.py 80 oper = {}
84 oper[item[0]] = item[1]
86 oper[item[0]] = item[1:]
91 return oper, opc
  /external/wpa_supplicant_8/hs20/client/
oma_dm_client.c 273 int cmdid, const char *oper,
284 snprintf(buf, sizeof(buf), "Reversed-Domain-Name: %s", oper);
293 const char *url, int msgid, const char *oper)
318 oma_dm_add_hs20_generic_alert(ctx, syncbody, cmdid, oper, str);
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver.h 4826 } oper; member in struct:wpa_event_data::tdls
4837 } oper; member in struct:wpa_event_data::wnm
    [all...]
  /art/compiler/optimizing/
induction_var_range.cc 1341 HInstruction* oper; local
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
Dfp.java     [all...]
  /external/wpa_supplicant_8/src/ap/
ap_drv_ops.h 125 enum wnm_oper oper, const u8 *peer,
ap_drv_ops.c 706 int hostapd_drv_wnm_oper(struct hostapd_data *hapd, enum wnm_oper oper,
711 return hapd->driver->wnm_oper(hapd->drv_priv, oper, peer, buf,
  /packages/apps/Contacts/tests/src/com/android/contacts/model/
RawContactDeltaListTests.java 301 final ContentProviderOperation oper = cpoWrapper.getOperation(); local
302 if (AggregationExceptions.CONTENT_URI.equals(oper.getUri())
  /external/tensorflow/tensorflow/java/src/main/native/
operation_builder_jni.cc 39 out->oper = reinterpret_cast<TF_Operation*>(op_handle);
  /external/deqp/modules/gles2/performance/
es2pShaderCompilationCases.cpp 556 ShaderCompilerOperCase (Context& context, const char* name, const char* description, int caseID, bool avoidCache, bool addWhitespaceAndComments, bool isVertexCase, const char* oper, int numOperations);
714 InvalidShaderCompilerOperCase (Context& context, const char* name, const char* description, int caseID, InvalidityType invalidityType, bool isVertexCase, const char* oper, int numOperations);
    [all...]
  /external/deqp/modules/gles3/performance/
es3pShaderCompilationCases.cpp 556 ShaderCompilerOperCase (Context& context, const char* name, const char* description, int caseID, bool avoidCache, bool addWhitespaceAndComments, bool isVertexCase, const char* oper, int numOperations);
714 InvalidShaderCompilerOperCase (Context& context, const char* name, const char* description, int caseID, InvalidityType invalidityType, bool isVertexCase, const char* oper, int numOperations);
    [all...]

Completed in 2316 milliseconds

1 23 4